страница пользователей
This commit is contained in:
parent
2479f5e05d
commit
ba358f05f6
@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
|
||||
const UserActions = () => {
|
||||
return (
|
||||
<div>
|
||||
<button>Заблокировать</button>
|
||||
<button>Удалить</button>
|
||||
<button>Сменить пароль</button>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default UserActions;
|
@ -0,0 +1,22 @@
|
||||
import React from 'react';
|
||||
import UserActions from '../components/userActions';
|
||||
|
||||
const Users = () => {
|
||||
const users = ['User1', 'User2', 'User3']; //заглушка(потом можно убрать)
|
||||
|
||||
return (
|
||||
<div>
|
||||
<h2>Пользователи</h2>
|
||||
<ul>
|
||||
{users.map((user, index) => (
|
||||
<li key={index}>
|
||||
{user}
|
||||
<UserActions />
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Users;
|
Loading…
Reference in New Issue
Block a user