example主题调整

This commit is contained in:
tangly1024
2022-04-27 13:10:38 +08:00
parent d0edae963b
commit d84774bc65
18 changed files with 472 additions and 314 deletions

View File

@@ -1,6 +1,7 @@
import LayoutBase from './LayoutBase'
export const Layout404 = () => {
return <div>
404 Not found.
</div>
export const Layout404 = (props) => {
return <LayoutBase {...props}>
404 Not found.
</LayoutBase>
}