Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bdnr
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolas Fripp Rodriguez
bdnr
Commits
18d2f499
Commit
18d2f499
authored
1 year ago
by
Martina Font
Browse files
Options
Downloads
Patches
Plain Diff
Add textfield
parent
c8932fa4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ui/src/pages/Home.tsx
+21
-1
21 additions, 1 deletion
ui/src/pages/Home.tsx
with
21 additions
and
1 deletion
ui/src/pages/Home.tsx
+
21
−
1
View file @
18d2f499
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
>
);
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment