You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
302 B
TypeScript
13 lines
302 B
TypeScript
import React from 'react';
|
|
import Layout from '../components/Layout';
|
|
import ErrorLogViewer from '../components/ErrorLogViewer';
|
|
|
|
const ErrorsPage: React.FC = () => {
|
|
return (
|
|
<Layout title="에러 로그 - Stock Oracle">
|
|
<ErrorLogViewer />
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default ErrorsPage; |