handspew / pages /_app.js
Tina Tarighian
initial
065d164
raw
history blame
129 Bytes
import "@/styles/globals.css";
export default function App({ Component, pageProps }) {
return <Component {...pageProps} />;
}