summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/setting.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/components/admin_console/setting.jsx
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
Diffstat (limited to 'webapp/components/admin_console/setting.jsx')
-rw-r--r--webapp/components/admin_console/setting.jsx35
1 files changed, 0 insertions, 35 deletions
diff --git a/webapp/components/admin_console/setting.jsx b/webapp/components/admin_console/setting.jsx
deleted file mode 100644
index 9ef6554ac..000000000
--- a/webapp/components/admin_console/setting.jsx
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React, {PureComponent} from 'react';
-import PropTypes from 'prop-types';
-
-export default class Settings extends PureComponent {
- static propTypes = {
- inputId: PropTypes.string,
- label: PropTypes.node.isRequired,
- children: PropTypes.node.isRequired,
- helpText: PropTypes.node
- };
-
- render() {
- const {children, helpText, inputId, label} = this.props;
-
- return (
- <div className='form-group'>
- <label
- className='control-label col-sm-4'
- htmlFor={inputId}
- >
- {label}
- </label>
- <div className='col-sm-8'>
- {children}
- <div className='help-text'>
- {helpText}
- </div>
- </div>
- </div>
- );
- }
-}