mirror of
https://gitlab.aliens-lyon.fr/encartes/web-interface.git
synced 2026-03-18 23:21:05 +01:00
Format the code
This commit is contained in:
parent
0d334327cf
commit
62d297a0a3
10
src/App.js
10
src/App.js
@ -202,9 +202,9 @@ function EditDialog({ isOpen, setIsOpen, room }) {
|
||||
<DialogTitle>Salle n°{room}</DialogTitle>
|
||||
<DialogContent>
|
||||
<DialogContentText>
|
||||
Noms :<br/>
|
||||
Noms :<br />
|
||||
{names.map(name => {
|
||||
return <Chip label={name} variant="outlined" onDelete={() => {removeName(name)}} />
|
||||
return <Chip label={name} variant="outlined" onDelete={() => { removeName(name) }} />
|
||||
})}
|
||||
|
||||
<TextField
|
||||
@ -216,11 +216,11 @@ function EditDialog({ isOpen, setIsOpen, room }) {
|
||||
/>
|
||||
<Button onClick={() => { addName() }}>Ajouter</Button>
|
||||
|
||||
<Divider/>
|
||||
<Divider />
|
||||
|
||||
Utilisateurs :<br/>
|
||||
Utilisateurs :<br />
|
||||
{users.map(name => {
|
||||
return <Chip label={name} variant="outlined" onDelete={() => {}} />
|
||||
return <Chip label={name} variant="outlined" onDelete={() => { }} />
|
||||
})}
|
||||
</DialogContentText>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user