You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
689 B
24 lines
689 B
import 'antd/dist/antd.css'; |
|
import '../styles/colors.scss'; |
|
import '../styles/globals.scss'; |
|
|
|
// GW: I can't override ant design styles through components using NextJS's built-in CSS modules. So I'll just import styles here for now and figure out enabling SASS modules later. |
|
import '../styles/home.scss'; |
|
|
|
import { AppProps } from 'next/app'; |
|
import ServerStatusProvider from '../utils/server-status-context'; |
|
import MainLayout from './components/main-layout'; |
|
|
|
|
|
function App({ Component, pageProps }: AppProps) { |
|
return ( |
|
<ServerStatusProvider> |
|
<MainLayout> |
|
<Component {...pageProps} /> |
|
</MainLayout> |
|
</ServerStatusProvider> |
|
|
|
) |
|
} |
|
|
|
export default App; |