UNPKG

@anishpras/create-portfolio

Version:

🏗 Personal CLI to bootstrap new portfolio from the given templates.

13 lines (10 loc) 263 B
import "../styles/globals.scss"; import { AnimatePresence } from "framer-motion"; function MyApp({ Component, pageProps }) { return ( <AnimatePresence exitBeforeEnter> <Component {...pageProps} /> </AnimatePresence> ); } export default MyApp;