Spaces:
Running
Running
File size: 418 Bytes
aedd342 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import "./App.css";
import MyInterests from "./sections/MyInterests";
import Presentation from "./sections/Presentation";
import AcercaDe from "./sections/AcercaDe";
import Contacto from "./sections/Contacto";
function App() {
return (
<>
<Presentation id="presentacion"/>
<AcercaDe id="acercade"/>
<MyInterests id="carta"/>
<Contacto id="contacto"/>
</>
);
}
export default App;
|