完善令牌界面

This commit is contained in:
CaIon
2023-10-31 22:41:34 +08:00
parent f98dd8d693
commit 0a945c160d
7 changed files with 481 additions and 480 deletions

View File

@@ -1,13 +1,17 @@
import React from 'react';
import { Segment, Header } from 'semantic-ui-react';
import TokensTable from '../../components/TokensTable';
import {Layout} from "@douyinfe/semi-ui";
const {Content, Header} = Layout;
const Token = () => (
<>
<Segment>
<Header as='h3'>我的令牌</Header>
<TokensTable/>
</Segment>
<Layout>
<Header>
<h3>我的令牌</h3>
</Header>
<Content>
<TokensTable/>
</Content>
</Layout>
</>
);