seawolf2357's picture
Deploy from GitHub repository
3382f47 verified
raw
history blame contribute delete
266 Bytes
import { type AppType } from "next/dist/shared/lib/utils";
import "~/styles/globals.css";
import "@fortawesome/fontawesome-svg-core/styles.css";
const MyApp: AppType = ({ Component, pageProps }) => {
return <Component {...pageProps} />;
};
export default MyApp;