UNPKG

create-swiftstart

Version:

Automate the setup of Vite-React & Next.js projects with a pre-designed boilerplate structure using create-swiftstart. This tool saves your time and provides a clean starting point for your React or Next.js applications.

19 lines (16 loc) 342 B
import Head from "next/head"; import { Toaster } from "react-hot-toast"; import MetaData from "@/components/MetaData"; export default function MyApp({ Component, pageProps }) { return ( <> <Head> <MetaData /> </Head> <main> <Component {...pageProps} /> </main> <Toaster /> </> ); }