mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 02:54:15 +00:00
15 lines
281 B
JavaScript
15 lines
281 B
JavaScript
import { NotFound, RenderError, Crash } from "@components"
|
|
|
|
export default {
|
|
PageLoad: () => {
|
|
return <antd.Skeleton active />
|
|
},
|
|
NotFound: (props) => {
|
|
return <NotFound />
|
|
},
|
|
RenderError: (props) => {
|
|
return <RenderError {...props} />
|
|
},
|
|
Crash: Crash.CrashWrapper,
|
|
}
|