1
0
Fork 0

Fix spacing

This commit is contained in:
Amarpreet Minhas 2019-07-23 20:39:53 -04:00
parent 5b9e98600f
commit 49e4015c17
2 changed files with 11 additions and 11 deletions

View file

@ -11,16 +11,17 @@ class Post extends React.Component {
} }
render () { render () {
return ( console.log(this.props.posts)
<div className="item" key="{post.id}"> return (
<div className="content"> <div className="item" key="{post.id}">
<div className="description"> <div className="content">
<h1><b><u><Link to={"/posts/"}>""</Link></u></b></h1> <div className="description">
<ReactMarkdown source="{post.content}" /> <h1><b><u><Link to={"/posts/"}>""</Link></u></b></h1>
</div> <ReactMarkdown source="{post.content}" />
</div> </div>
</div> </div>
); </div>
);
} }
} }

View file

@ -25,7 +25,6 @@ class PostList extends React.Component {
render () { render () {
console.log(this.props.posts)
return ( return (
<div className="ui relaxed divided list"> <div className="ui relaxed divided list">
{this.renderList()} {this.renderList()}