Created
November 1, 2020 01:48
-
-
Save neomatrixcode/8ff5b814c59709328dbf64ff8438e06d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logo from './logo.svg'; | |
import './App.css'; | |
import AgregarTareaContainer from './containers/agregarTareaContainer' | |
import VerTareasContainer from './containers/verTareasContainer' | |
function App() { | |
return ( | |
<div className="App"> | |
<header className="App-header"> | |
<AgregarTareaContainer/> | |
<VerTareasContainer/> | |
<img src={logo} className="App-logo" alt="logo" /> | |
<p> | |
Edit <code>src/App.js</code> and save to reload. | |
</p> | |
<a | |
className="App-link" | |
href="https://reactjs.org" | |
target="_blank" | |
rel="noopener noreferrer" | |
> | |
Learn React | |
</a> | |
</header> | |
</div> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment