mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-27 13:46:38 +08:00
15 lines
285 B
JavaScript
15 lines
285 B
JavaScript
import React from 'react';
|
|
import { Segment, Header } from 'semantic-ui-react';
|
|
import UsersTable from '../../components/UsersTable';
|
|
|
|
const User = () => (
|
|
<>
|
|
<Segment>
|
|
<Header as='h3'>Manage Users</Header>
|
|
<UsersTable/>
|
|
</Segment>
|
|
</>
|
|
);
|
|
|
|
export default User;
|