david / src /App.jsx
JairoDanielMT's picture
serfd
aedd342
raw
history blame contribute delete
418 Bytes
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;