Setting up for Twitter client

This commit is contained in:
Rodrigo Pedroso 2019-06-20 12:17:41 -04:00
commit 9989d0a5ba
3 changed files with 38 additions and 5 deletions

View file

@ -5,18 +5,22 @@ import Post from './Posts'
const App = () => (
<div className = 'row mt-5'>
<div className = 'col-md-4 offset-md-1'>
<h2>Articles</h2>
<div className = 'col-md-4 offset-md-1'>
<h2>Articles</h2>
<List />
</div>
<div className = 'col-md-4 offset-md-1'>
<h2>Add a new article</h2>
<Form />
</div>
<div className="col-md-4 offset-md-1">
<h2>API posts</h2>
<Post />
</div>
</div>
</div>
)