mirror of
https://github.com/stashapp/stash.git
synced 2025-12-12 11:22:37 +01:00
5 lines
144 B
TypeScript
5 lines
144 B
TypeScript
import React, { FunctionComponent } from "react";
|
|
|
|
export const PageNotFound: FunctionComponent = () => {
|
|
return <h1>Page not found.</h1>;
|
|
};
|