Files
tasknote/src/views/NotFound/index.tsx
T
2024-08-26 10:03:11 -03:00

13 lines
129 B
TypeScript

import React from 'react';
/**
*
*/
function NotFound() {
return (
<h2>Not found!</h2>
);
}
export default NotFound;