-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Carpio
committed
Mar 7, 2021
1 parent
0e6fa8e
commit 86ae0cb
Showing
8 changed files
with
1,065 additions
and
61 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.buscador{ | ||
.title{ | ||
margin-top: 1%; | ||
font-family: 'PT Sans Narrow', sans-serif; | ||
font-weight: 400; | ||
margin-bottom: 0; | ||
} | ||
#buscadorListaEventos{ | ||
width: 98%; | ||
padding: 0.25% 1%; | ||
font-size: large; | ||
font-family: 'PT Sans Narrow', sans-serif; | ||
font-weight: 400; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from 'react'; | ||
import '../../assets/buscador.scss'; | ||
|
||
interface IBuscadorProps { | ||
textSearch: string, | ||
changeTextSearch: (text: string) => void | ||
} | ||
interface IBuscadorState { | ||
|
||
} | ||
|
||
class Buscador extends React.Component<IBuscadorProps, IBuscadorState>{ | ||
|
||
public render() { | ||
return ( | ||
<div className='buscador'> | ||
<h3 className='title'>Buscador</h3> | ||
<input id='buscadorListaEventos' onChange={(e: React.ChangeEvent<HTMLInputElement>) => { | ||
this.props.changeTextSearch(e.currentTarget.value); | ||
}} value={this.props.textSearch} /> | ||
</div> | ||
); | ||
} | ||
|
||
} | ||
|
||
export default Buscador; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
265 changes: 229 additions & 36 deletions
265
etsii_agenda/src/components/mainComponents/EventList.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.