roles-bot/src/web/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) {
return <Component {...pageProps} />
}