stash/ui/v2.5/src/components/PageNotFound.tsx
2020-03-01 21:04:32 +01:00

5 lines
144 B
TypeScript

import React, { FunctionComponent } from "react";
export const PageNotFound: FunctionComponent = () => {
return <h1>Page not found.</h1>;
};