12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
import ErrorPage from '@/src/components/pages/error';
|
|
import React from 'react';
|
|
|
|
const NotFound = () => {
|
|
return (
|
|
<>
|
|
<ErrorPage />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default NotFound; |