This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
feishin/src/renderer/components/motion/index.tsx
2022-12-26 16:43:37 -08:00

10 lines
257 B
TypeScript

import { Flex, Group, Stack } from '@mantine/core';
import { motion } from 'framer-motion';
export const MotionFlex = motion(Flex);
export const MotionGroup = motion(Group);
export const MotionStack = motion(Stack);
export const MotionDiv = motion.div;