Files
NotionNext/pages/404.js
2022-03-03 21:28:08 +08:00

14 lines
253 B
JavaScript

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