12 lines
315 B
TypeScript
12 lines
315 B
TypeScript
'use client';
|
|
|
|
import { motion, MotionProps } from 'framer-motion';
|
|
import { ReactNode } from 'react';
|
|
|
|
interface MotionWrapperProps extends MotionProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function MotionWrapper({ children, ...props }: MotionWrapperProps) {
|
|
return <motion.div {...props}>{children}</motion.div>;
|
|
} |