mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 14:28:04 +00:00
Kohei Watanabe
90bb5008c5
git-subtree-dir: next git-subtree-mainline:5d936d154e
git-subtree-split:19b6c91e86
14 lines
298 B
TypeScript
14 lines
298 B
TypeScript
import React from "react";
|
|
import App from "next/app";
|
|
import MainTheme from "../styles/MainTheme";
|
|
|
|
export default class extends App {
|
|
render() {
|
|
const { Component, pageProps } = this.props;
|
|
return (
|
|
<MainTheme>
|
|
<Component {...pageProps} />
|
|
</MainTheme>
|
|
);
|
|
}
|
|
}
|