source:
my-react-app/src/components/ErrorPage.js
Last change on this file was e48199a, checked in by , 11 days ago | |
---|---|
|
|
File size: 244 bytes |
Line | |
---|---|
1 | import React from 'react'; |
2 | |
3 | const 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 | |
12 | export default ErrorPage; |
Note:
See TracBrowser
for help on using the repository browser.