13 lines
289 B
TypeScript
13 lines
289 B
TypeScript
import "bootstrap/dist/css/bootstrap.min.css";
|
|
import type { AppProps } from "next/app";
|
|
import Layout from "../components/Layout";
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<Layout>
|
|
<Component {...pageProps} />
|
|
</Layout>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|