mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-17 01:06:37 +08:00
15 lines
286 B
JavaScript
15 lines
286 B
JavaScript
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;
|