mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-30 01:26:43 +08:00
20 lines
553 B
JavaScript
20 lines
553 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import './container.scss';
|
|
|
|
export class Container extends React.Component {
|
|
constructor(props){
|
|
super(props);
|
|
}
|
|
render() {
|
|
const style = this.props.maxWidth ? {maxWidth: this.props.maxWidth} : {};
|
|
let className = "component_container";
|
|
if(this.props.className) className += " "+this.props.className;
|
|
return (
|
|
<div className={className} style={style}>
|
|
{this.props.children}
|
|
</div>
|
|
);
|
|
}
|
|
}
|