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

19 lines
368 B
JavaScript
Raw Normal View History

2023-04-22 20:39:27 +08:00
import React from 'react';
import UsersTable from '../../components/UsersTable';
2023-11-27 22:43:46 +08:00
import {Layout} from "@douyinfe/semi-ui";
2023-04-22 20:39:27 +08:00
const User = () => (
<>
2023-11-27 22:43:46 +08:00
<Layout>
<Layout.Header>
<h3>管理用户</h3>
</Layout.Header>
<Layout.Content>
<UsersTable/>
</Layout.Content>
</Layout>
2023-04-22 20:39:27 +08:00
</>
);
export default User;