mirror of
https://github.com/linux-do/new-api.git
synced 2025-11-12 17:13:43 +08:00
Token API done without verification
This commit is contained in:
14
web/src/pages/Token/index.js
Normal file
14
web/src/pages/Token/index.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import React from 'react';
|
||||
import { Segment, Header } from 'semantic-ui-react';
|
||||
import TokensTable from '../../components/TokensTable';
|
||||
|
||||
const Token = () => (
|
||||
<>
|
||||
<Segment>
|
||||
<Header as='h3'>我的令牌</Header>
|
||||
<TokensTable/>
|
||||
</Segment>
|
||||
</>
|
||||
);
|
||||
|
||||
export default Token;
|
||||
Reference in New Issue
Block a user