import React, { FunctionComponent } from "react"; import { ErrorPage } from "./ErrorPage"; import errorBoundary from "../../static/images/ErrorPage/error-boundary.png"; import page404 from "../../static/images/Page404/Page404.png"; export default { title: "Error/ErrorPage", component: ErrorPage, parameters: { componentSubtitle: "General error page", }, }; export const Default: FunctionComponent = () => { return (

Go to {" "} Homepage ?

); }; export const Page404: FunctionComponent = () => { return (

Go to {" "} Homepage ?

); };