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

main
Last change on this file since b67dfd3 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 334 bytes
RevLine 
[d24f17c]1// ErrorPage.js
2import React from 'react';
3
4const ErrorPage = () => {
5 return (
6 <div>
7 <h1>Oops! Something went wrong.</h1>
8 <p>Please try again later or contact support.</p>
9 {/* Add any additional content or error-specific messages */}
10 </div>
11 );
12};
13
14export default ErrorPage;
Note: See TracBrowser for help on using the repository browser.