Skip to content

Commit

Permalink
💡(#87): adicionando tabela na página de Pesquisa Avançada
Browse files Browse the repository at this point in the history
Co-authored-by: Ceci Quaresma <[email protected]>
  • Loading branch information
VieiraLaris and cqcoding committed Dec 10, 2023
1 parent 4b4c828 commit cc7f52d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
6 changes: 5 additions & 1 deletion implementacao-front/src/pages/PesquisaAvancada.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@
.titulo {
width: 100%;
text-align: left;
}
}

.lowerDiv {
align-items: center;
}
16 changes: 9 additions & 7 deletions implementacao-front/src/pages/PesquisaAvancada.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,20 @@ function PesquisaAvancada() {
return (
<div className={styles.container}>
<MenuBar />
{/*<div className={styles.content}>
{<div className={styles.content}>
<h1 className={styles.titulo}>Pesquisa Avançada</h1>
<TesteTabela />
</div>*/}
<div className={styles.content}>
<form>
<div className={styles.lowerDiv}>
<Tabela></Tabela>
</div>
<p>Atenção: Os dados referidos são apenas do ano de 2017.</p>
</div>}
<div className={styles.lowerDiv}>
{/*<form>
<input type="text" placeholder="Nome..." value={value} onChange={(e) => setValue(e.target.value)}/>
<MDBBtnGroup>
<MDBBtn>Pesquisar</MDBBtn>
</MDBBtnGroup>
</form>
<Tabela></Tabela>
</form>*/}
</div>
</div>
);
Expand Down

0 comments on commit cc7f52d

Please sign in to comment.