summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/setting.jsx
blob: 591e8b5519e53af5e0f24aa4f4e40574bddcfe40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import PropTypes from 'prop-types';

// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import React from 'react';

export default function Setting(props) {
    return (
        <div className='form-group'>
            <label
                className='control-label col-sm-4'
                htmlFor={props.inputId}
            >
                {props.label}
            </label>
            <div className='col-sm-8'>
                {props.children}
                <div className='help-text'>
                    {props.helpText}
                </div>
            </div>
        </div>
    );
}
Setting.defaultProps = {
};

Setting.propTypes = {
    inputId: PropTypes.string,
    label: PropTypes.node.isRequired,
    children: PropTypes.node.isRequired,
    helpText: PropTypes.node
};