Skip to content

Commit

Permalink
🆒(#81): Remoção do erro encontrado pelo ESLint
Browse files Browse the repository at this point in the history
Co-authored-by: Ana Borges <[email protected]>
  • Loading branch information
BrunoHDuarte2 and anabborges committed Nov 29, 2023
1 parent c2545ed commit 2933f62
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions implementacao-front/src/components/TesteTabela.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Column } from "primereact/column";
import { DataTable } from "primereact/datatable";
import "primereact/resources/primereact.min.css";
import "primereact/resources/themes/lara-light-indigo/theme.css";
import { useState } from "react";
import styles from "./TesteTabela.module.css";

{
Expand All @@ -12,7 +11,6 @@ import { InputText } from 'primereact/inputtext'*/
}

function TesteTabela() {
const [filtro, setFiltro] = useState();

const data = [
{
Expand Down Expand Up @@ -67,7 +65,7 @@ function TesteTabela() {
</form>
</div>
<div className={styles.tabela}>
<DataTable value={data} filters={filtro}>
<DataTable value={data}>
<Column field="nome" header="Nome" />
<Column field="cpf" header="CPF" />
<Column field="cargo" header="Cargo" />
Expand Down

0 comments on commit 2933f62

Please sign in to comment.