mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-14 13:08:06 +01:00
6 lines
184 B
TypeScript
6 lines
184 B
TypeScript
|
import '../styles/css/style.css';
|
||
|
import type { AppProps } from 'next/app';
|
||
|
|
||
|
export default function MyApp({ Component, pageProps }: AppProps) {
|
||
|
return <Component {...pageProps} />
|
||
|
}
|