main
Last change
on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
334 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | // ErrorPage.js
|
---|
| 2 | import React from 'react';
|
---|
| 3 |
|
---|
| 4 | const 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 |
|
---|
| 14 | export default ErrorPage;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.