mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
12 lines
190 B
JavaScript
12 lines
190 B
JavaScript
import { Layout404 } from '@/themes'
|
|
|
|
/**
|
|
* 自定义404界面
|
|
* @returns {JSX.Element}
|
|
* @constructor
|
|
*/
|
|
|
|
export default function Custom404 (props) {
|
|
return <Layout404 {...props}/>
|
|
}
|