Add dark mode with next-themes

This commit is contained in:
Defectink
2022-03-22 11:55:03 +08:00
parent 97f2275ce7
commit bc7ada8abc
8 changed files with 75 additions and 18 deletions

View File

@ -1,6 +1,11 @@
import { NextPage } from 'next';
import { AppProps } from 'next/app';
import { ReactElement } from 'react';
export type NextPageWithLayout = {
getLayout(page: ReactElement): JSX.Element;
} & NextPage;
export type AppPropsWithLayout = AppProps & {
Component: NextPageWithLayout;
};