Fix react indentation

This commit is contained in:
Pavel Dohnal
2019-01-23 13:23:03 +01:00
parent 91513edd09
commit 9de2a10bc2
2 changed files with 7 additions and 5 deletions

View File

@ -6,7 +6,10 @@ import FormList from './list.jsx';
const container = document.getElementById('forms_container');
if (container) {
ReactDOM.render(<HashRouter>
<Route path="*" component={FormList} />
</HashRouter>, container);
ReactDOM.render(
<HashRouter>
<Route path="*" component={FormList} />
</HashRouter>,
container
);
}