misc: Cleanup

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2022-04-05 11:53:00 +02:00
parent b5f44113b5
commit aa4e7100fe
2 changed files with 5 additions and 2 deletions

View File

@@ -11,6 +11,9 @@ interface Props {
export default class Container extends React.Component<Props> {
public render = () => React.createElement(this.props.mainContainer ? 'main' : 'div', {className: buildClassName(css.container, this.props.className, [css.main, this.props.mainContainer]), children: this.props.children})
public render = () => React.createElement(this.props.mainContainer ? 'main' : 'div', {
className: buildClassName(css.container, this.props.className, [css.main, this.props.mainContainer]),
children: this.props.children
})
}