mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
14 lines
253 B
JavaScript
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}/>
|
|
}
|