source: my-react-app/src/components/ErrorPage.js@ e48199a

main
Last change on this file since e48199a was e48199a, checked in by Aleksandar Panovski <apano77@…>, 10 days ago

Final version for DB

  • Property mode set to 100644
File size: 244 bytes
Line 
1import React from 'react';
2
3const ErrorPage = () => {
4 return (
5 <div>
6 <h1>Oops! Something went wrong.</h1>
7 <p>Please try again later or contact support.</p>
8 </div>
9 );
10};
11
12export default ErrorPage;
Note: See TracBrowser for help on using the repository browser.