|
|
|
@ -2,13 +2,12 @@ import React from 'react';
|
|
|
|
|
import '../styles/globals.css';
|
|
|
|
|
import App from 'next/app';
|
|
|
|
|
import Layout from '../components/Layout';
|
|
|
|
|
import LoginPage from './login';
|
|
|
|
|
|
|
|
|
|
class CoreApp extends App {
|
|
|
|
|
public render(): JSX.Element {
|
|
|
|
|
const { Component, pageProps, router } = this.props;
|
|
|
|
|
if (router.asPath == '/login') {
|
|
|
|
|
return <LoginPage {...pageProps} />;
|
|
|
|
|
if (router.asPath === '/login') {
|
|
|
|
|
return <Component {...pageProps} />;
|
|
|
|
|
} else {
|
|
|
|
|
return (
|
|
|
|
|
<Layout>
|
|
|
|
|