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

15 lines
286 B
JavaScript
Raw Normal View History

2023-04-22 20:39:27 +08:00
import React from 'react';
import { Header, Segment } from 'semantic-ui-react';
import FilesTable from '../../components/FilesTable';
const File = () => (
<>
<Segment>
<Header as='h3'>管理文件</Header>
<FilesTable />
</Segment>
</>
);
export default File;