added PageLoad static render

This commit is contained in:
srgooglo 2022-06-01 20:36:52 +02:00
parent 64076a21da
commit 7b7e0445ea

View File

@ -187,6 +187,9 @@ class App extends React.Component {
} }
static staticRenders = { static staticRenders = {
PageLoad: () => {
return <antd.Skeleton active />
},
NotFound: (props) => { NotFound: (props) => {
return <NotFound /> return <NotFound />
}, },