10 lines
257 B
TypeScript
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;
|