10 lines
150 B
TypeScript

import React from 'react';
export const NoPageFound = () => {
return (
<div>
<p>Page Not Found!</p>
</div>
);
};