Skip to content

Commit

Permalink
correcoes iniciais #37
Browse files Browse the repository at this point in the history
  • Loading branch information
biancabsouza23 committed May 28, 2024
1 parent 8a98462 commit 5e70bdc
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
39 changes: 39 additions & 0 deletions Fronted/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Fronted/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"@testing-library/user-event": "^13.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},
Expand Down
6 changes: 5 additions & 1 deletion Fronted/src/App.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import React from "react";
import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
import "./componentes/normalize.css";
import PaginaInicial from "./componentes/inicial"; // Importe o componente com a primeira letra maiúscula
import EditPerfil from "./componentes/EditPerfil";
import FormularioCadastro from "./componentes/FormularioCadastro";
import MeuPerfil from "./componentes/MeuPerfil";

function App() {
return <PaginaInicial />;
return <MeuPerfil />;
}

export default App;

0 comments on commit 5e70bdc

Please sign in to comment.