forked from mirrors/thatmattlove-hyperglass
5 lines
172 B
TypeScript
5 lines
172 B
TypeScript
import { motion } from 'framer-motion';
|
|
|
|
export function withAnimation<P>(Component: React.FunctionComponent) {
|
|
return motion.custom<Omit<P, 'transition'>>(Component);
|
|
}
|