更新用户管理界面UI

This commit is contained in:
CaIon
2023-11-27 22:43:46 +08:00
parent 4475d54c16
commit b140b326b8
8 changed files with 540 additions and 550 deletions

View File

@@ -1,13 +1,18 @@
import React from 'react';
import { Segment, Header } from 'semantic-ui-react';
import UsersTable from '../../components/UsersTable';
import {Layout} from "@douyinfe/semi-ui";
const User = () => (
<>
<Segment>
<Header as='h3'>管理用户</Header>
<UsersTable/>
</Segment>
<Layout>
<Layout.Header>
<h3>管理用户</h3>
</Layout.Header>
<Layout.Content>
<UsersTable/>
</Layout.Content>
</Layout>
</>
);