alas/web/pages/_app.tsx

12 lines
168 B
TypeScript
Raw Permalink Normal View History

2022-07-03 15:29:11 +00:00
import '../styles/theme.scss'
// pages/_app.js
function MyApp({ Component, pageProps }) {
return (
<Component {...pageProps} />
)
}
export default MyApp