Move <hr> to correct file

This commit is contained in:
René Pfeuffer
2018-09-18 16:51:31 +02:00
parent 03bfb92ec7
commit dc59d1a5ce
2 changed files with 83 additions and 49 deletions

View File

@@ -13,12 +13,7 @@ class ChangesetTable extends React.Component<Props> {
const content = changesets.map((changeset, index) => {
return <ChangesetRow key={index} changeset={changeset} />;
});
return (
<div>
<hr />
{content}
</div>
);
return <div>{content}</div>;
}
}