new-api/web/src/pages/Task/index.js

11 lines
170 B
JavaScript
Raw Normal View History

import React from 'react';
2025-04-04 12:00:38 +08:00
import TaskLogsTable from '../../components/TaskLogsTable.js';
const Task = () => (
<>
<TaskLogsTable />
</>
);
export default Task;