roles-bot/packages/website/pages/_app.tsx

6 lines
184 B
TypeScript
Raw Normal View History

2021-12-22 18:40:46 +01:00
import '../styles/css/style.css';
import type { AppProps } from 'next/app';
export default function MyApp({ Component, pageProps }: AppProps) {
2022-01-02 18:54:19 +01:00
return <Component {...pageProps} />;
2021-12-22 18:40:46 +01:00
}