formatting

This commit is contained in:
Michael Bradley, Jr 2018-10-24 15:14:30 -05:00
parent 10fa3fec9f
commit a5c972903b
1 changed files with 5 additions and 1 deletions

View File

@ -105,7 +105,11 @@ class AppContainer extends Component {
} }
render() { render() {
return <div className={(this.props.theme) + "-theme"}>{this.renderBody()}</div>; return (
<div className={(this.props.theme) + "-theme"}>
{this.renderBody()}
</div>
);
} }
} }