library/pages/_app.tsx

9 lines
183 B
TypeScript
Raw Normal View History

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