Files
NotionNext/pages/404.js
tangly1024 2396e3762a build
2022-03-15 17:40:09 +08:00

17 lines
334 B
JavaScript

import { useGlobal } from '@/lib/global'
import * as ThemeMap from '@/themes'
/**
* 自定义404界面
* @returns {JSX.Element}
* @constructor
*/
const Custom404 = (props) => {
const { theme } = useGlobal()
const ThemeComponents = ThemeMap[theme]
return <ThemeComponents.Layout404 {...props}/>
}
export default Custom404