14 lines
215 B
TypeScript
14 lines
215 B
TypeScript
import React, { FunctionComponent } from 'react';
|
|
|
|
type ComponentProps = {
|
|
};
|
|
|
|
export const NotFound: FunctionComponent<ComponentProps> = (props): JSX.Element => {
|
|
|
|
return (
|
|
<div>
|
|
404
|
|
</div>
|
|
);
|
|
};
|