Skip to content
Snippets Groups Projects
Commit 18d2f499 authored by Martina Font's avatar Martina Font
Browse files

Add textfield

parent c8932fa4
No related branches found
No related tags found
No related merge requests found
import { Button, FormControl, InputLabel, MenuItem, Select } from "@mui/material";
import { Layout } from "../components";
const Home = () => {
return (
<Layout>
<>HOLA MARTI</>
<h1>Estadísticas FIFA (2016-2022)</h1>
<h2>Valoración</h2>
<FormControl fullWidth>
<InputLabel id="demo-simple-select-label">Jugador</InputLabel>
<Select
labelId="demo-simple-select-label"
id="demo-simple-select"
value={1}
label="Age"
onChange={() => {}}
>
<MenuItem value={'Luis Suarez'}>Luis Suarez</MenuItem>
<MenuItem value={'Alexia Putellas'}>Alexia Putellas</MenuItem>
<MenuItem value={'Leo Messi'}>Leo Messi</MenuItem>
<MenuItem value={'Lucy Bronze'}>Lucy Bronze</MenuItem>
</Select>
</FormControl>
<Button variant="contained">Buscar</Button>
</Layout>
);
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment