library/pages/_app.tsx

8 lines
152 B
TypeScript
Raw Normal View History

2021-11-13 20:41:05 -05:00
import type {AppProps} from 'next/app';
2021-10-30 19:44:32 -04:00
2021-11-13 20:41:05 -05:00
function App({Component, pageProps}: AppProps) {
return <Component {...pageProps} />;
2021-10-30 19:44:32 -04:00
}
2021-11-13 20:41:05 -05:00
export default App;