You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
306 B
15 lines
306 B
import type React from 'react';
|
|
|
|
import { Card } from '@meshtastic/components';
|
|
|
|
export const NotFound = (): JSX.Element => {
|
|
return (
|
|
<Card
|
|
title="The requested file or directory could not be found"
|
|
description="Better luck next time"
|
|
>
|
|
<br />
|
|
<br />
|
|
</Card>
|
|
);
|
|
};
|
|
|