wisesplit/pages/_app.tsx

14 lines
289 B
TypeScript
Raw Normal View History

2022-10-24 07:40:14 +00:00
import "bootstrap/dist/css/bootstrap.min.css";
2022-10-24 07:10:52 +00:00
import type { AppProps } from "next/app";
2022-10-24 07:40:14 +00:00
import Layout from "../components/Layout";
2022-10-24 07:10:52 +00:00
function MyApp({ Component, pageProps }: AppProps) {
2022-10-24 07:40:14 +00:00
return (
<Layout>
<Component {...pageProps} />
</Layout>
);
2022-10-24 07:10:52 +00:00
}
export default MyApp;