mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 23:16:47 +00:00
10 lines
244 B
JavaScript
10 lines
244 B
JavaScript
import LayoutBase from './LayoutBase'
|
|
|
|
export const Layout404 = props => {
|
|
return <LayoutBase {...props}>
|
|
<div className='w-full h-96 py-80 flex justify-center items-center'>404 Not found.</div>
|
|
</LayoutBase>
|
|
}
|
|
|
|
export default Layout404
|