mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-10 13:14:04 +03:00
32 lines
797 B
JavaScript
32 lines
797 B
JavaScript
import * as React from "react";
|
|
|
|
import { CacheProvider, Global } from "@emotion/react";
|
|
import { cache } from "@emotion/css";
|
|
|
|
import App from "next/app";
|
|
import {
|
|
injectGlobalStyles,
|
|
injectTooltipStyles,
|
|
injectCodeBlockStyles,
|
|
} from "~/common/styles/global";
|
|
|
|
// NOTE(wwwjim):
|
|
// https://nextjs.org/docs/advanced-features/custom-app
|
|
function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<CacheProvider value={cache}>
|
|
<Global styles={injectGlobalStyles()} />
|
|
<Global styles={injectTooltipStyles()} />
|
|
<Global styles={injectCodeBlockStyles()} />
|
|
<Component {...pageProps} />
|
|
</CacheProvider>
|
|
);
|
|
}
|
|
|
|
MyApp.getInitialProps = async (appContext) => {
|
|
const appProps = await App.getInitialProps(appContext);
|
|
return { ...appProps };
|
|
};
|
|
|
|
export default MyApp;
|