mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 14:28:04 +00:00
17 lines
356 B
TypeScript
17 lines
356 B
TypeScript
|
import React from "react";
|
||
|
import App, { Container } from "next/app";
|
||
|
import MainTheme from "../styles/MainTheme";
|
||
|
|
||
|
export default class extends App {
|
||
|
render() {
|
||
|
const { Component, pageProps } = this.props;
|
||
|
return (
|
||
|
<Container>
|
||
|
<MainTheme>
|
||
|
<Component {...pageProps} />
|
||
|
</MainTheme>
|
||
|
</Container>
|
||
|
);
|
||
|
}
|
||
|
}
|