mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
20 lines
No EOL
452 B
TypeScript
20 lines
No EOL
452 B
TypeScript
import 'antd/dist/antd.compact.css';
|
|
import "../styles/globals.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; |