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.
14 lines
312 B
TypeScript
14 lines
312 B
TypeScript
import React from 'react';
|
|
import Layout from '@/components/Layout';
|
|
import RequestLogViewer from '../components/RequestLogViewer';
|
|
|
|
const RequestsPage: React.FC = () => {
|
|
return (
|
|
<Layout title="요청 로그 - Stock Oracle">
|
|
<RequestLogViewer />
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default RequestsPage;
|