2024-11-30 22:24:35 +08:00
|
|
|
import ErrorPage from 'hooks/error';
|
|
|
|
import { useEffect } from 'react';
|
2024-11-27 01:02:05 +08:00
|
|
|
|
|
|
|
const MyComponent = () => {
|
2024-11-27 19:52:49 +08:00
|
|
|
return <div>Hello, World!</div>;
|
2024-11-27 01:02:05 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function Routes() {
|
2024-11-30 14:03:32 +08:00
|
|
|
|
|
|
|
|
2024-11-30 22:24:35 +08:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<ErrorPage />
|
|
|
|
</div>
|
|
|
|
);
|
2024-11-27 19:52:49 +08:00
|
|
|
}
|