Files
react-shop/src/components/NotFound.jsx
T
2023-01-06 16:30:17 +01:00

14 lines
230 B
React

import BackHomeButton from './BackHomeButton'
const NotFound = () => {
return (
<div className='not-found'>
<h2>404</h2>
<p>Page not found</p>
<BackHomeButton text={"Home"}/>
</div>
);
};
export default NotFound;