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

13 lines
186 B
JavaScript
Raw Normal View History

2023-04-22 20:39:27 +08:00
import React from 'react';
import UsersTable from '../../components/table/UsersTable';
2023-04-22 20:39:27 +08:00
const User = () => {
return (
<>
2025-05-23 17:12:17 +08:00
<UsersTable />
</>
);
};
2023-04-22 20:39:27 +08:00
export default User;