1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/next/pages/_app.tsx

15 lines
298 B
TypeScript
Raw Normal View History

2019-04-23 16:48:33 +09:00
import React from "react";
2020-02-09 03:17:15 +09:00
import App from "next/app";
2019-04-23 16:48:33 +09:00
import MainTheme from "../styles/MainTheme";
export default class extends App {
render() {
const { Component, pageProps } = this.props;
return (
2020-02-09 03:17:15 +09:00
<MainTheme>
<Component {...pageProps} />
</MainTheme>
2019-04-23 16:48:33 +09:00
);
}
}