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.
13 lines
270 B
13 lines
270 B
4 years ago
|
import React from 'react';
|
||
|
import '../styles/globals.css';
|
||
|
import App from 'next/app';
|
||
|
|
||
|
class CoreApp extends App {
|
||
|
public render(): JSX.Element {
|
||
|
const { Component, pageProps } = this.props;
|
||
|
return <Component {...pageProps} />;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default CoreApp;
|