mirror of
https://github.com/sct/overseerr.git
synced 2025-10-03 00:48:07 +02:00
22 lines
478 B
TypeScript
22 lines
478 B
TypeScript
import React from 'react';
|
|
import '../styles/globals.css';
|
|
import App from 'next/app';
|
|
import Layout from '../components/Layout';
|
|
|
|
class CoreApp extends App {
|
|
public render(): JSX.Element {
|
|
const { Component, pageProps, router } = this.props;
|
|
if (router.asPath === '/login') {
|
|
return <Component {...pageProps} />;
|
|
} else {
|
|
return (
|
|
<Layout>
|
|
<Component {...pageProps} />
|
|
</Layout>
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
export default CoreApp;
|