mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-26 14:28:04 +00:00
15 lines
183 B
TypeScript
15 lines
183 B
TypeScript
function NotFound() {
|
|
return (
|
|
<div
|
|
style={{
|
|
display: "flex",
|
|
flex: 1,
|
|
}}
|
|
>
|
|
404 page not found
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default NotFound;
|