Этот коммит содержится в:
Christopher Speller
2016-04-07 10:38:36 -04:00
родитель 32bc97f855
Коммит 0a2341efd2
10 изменённых файлов: 303 добавлений и 86 удалений

28
webapp/components/admin_console/setting.jsx Обычный файл
Просмотреть файл

@@ -0,0 +1,28 @@
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
export default class Setting extends React.Component {
render() {
return (
<div className='form-group'>
<label
className='control-label col-sm-4'
>
{this.props.label}
</label>
<div className='col-sm-8'>
{this.props.children}
</div>
</div>
);
}
}
Setting.defaultProps = {
};
Setting.propTypes = {
label: React.PropTypes.node.isRequired,
children: React.PropTypes.node.isRequired
};