mocksaml/pages/_app.tsx

15 lines
306 B
TypeScript
Raw Normal View History

2022-01-08 15:11:13 +00:00
import '../styles/globals.css'
import type { AppProps } from 'next/app'
2022-02-17 06:05:50 +00:00
import Layout from '../components/Layout'
import 'rsuite/dist/rsuite.min.css';
2022-01-08 15:11:13 +00:00
function MyApp({ Component, pageProps }: AppProps) {
2022-02-17 06:05:50 +00:00
return (
<Layout>
<Component {...pageProps} />
</Layout>
)
2022-01-08 15:11:13 +00:00
}
export default MyApp