Skip to content

Commit

Permalink
🐛 : arrumando erros para o deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
anabborges committed Dec 11, 2023
1 parent 7c9cfb6 commit 2322f27
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 8 additions & 3 deletions implementacao-front/src/components/Profile.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
import styles from './Profile.module.css'

function Profile(props) {
interface ProfileProps {
name: string;
photo: string;
}

function Profile({name, photo}: ProfileProps) {
return (
<div className={styles.profile}>
<p>{props.name}</p>
<img className={styles.profilePictures} src={props.photo} alt="anaBorges" />
<p>{name}</p>
<img className={styles.profilePictures} src={photo} alt="fotoDeMembro" />
</div>
)
}
Expand Down
4 changes: 0 additions & 4 deletions implementacao-front/src/pages/PesquisaAvancada.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,9 @@ import MenuBar from "../components/MenuBar";
import styles from "./PesquisaAvancada.module.css";
//import TesteTabela from '../components/TesteTabela.tsx';
import Tabela from "../components/Tabela";
import { useState } from "react";
import { MDBBtn, MDBBtnGroup } from "mdb-react-ui-kit";

function PesquisaAvancada() {

const [value, setValue] = useState("")

return (
<div className={styles.container}>
<MenuBar />
Expand Down

0 comments on commit 2322f27

Please sign in to comment.