File size: 272 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /* eslint-disable react/jsx-pascal-case */
import * as React from 'react'
import * as FramerMotion from 'framer-motion'
console.log(FramerMotion)
export default function Home() {
return (
<div>
<FramerMotion.motion.div animate={{ x: 0 }} />
</div>
)
}
|