Create ~/ui/Form/Checkbox component (#5543)

This commit is contained in:
Jaco Greeff
2017-05-03 13:37:32 +02:00
committed by GitHub
parent c39952a727
commit 2f9e05830b
15 changed files with 73 additions and 22 deletions

View File

@@ -15,13 +15,12 @@
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import { omitBy } from 'lodash';
import { Checkbox } from 'semantic-ui-react';
import { observer } from 'mobx-react';
import React, { Component, PropTypes } from 'react';
import { FormattedMessage } from 'react-intl';
import { connect } from 'react-redux';
import { Actionbar, Button, DappCard, Page, SectionList } from '~/ui';
import { Actionbar, Button, Checkbox, DappCard, Page, SectionList } from '~/ui';
import { LockedIcon, VisibleIcon } from '~/ui/Icons';
import DappsVisible from '../DappsVisible';

View File

@@ -16,7 +16,8 @@
import React, { PropTypes } from 'react';
import { FormattedMessage } from 'react-intl';
import { Checkbox } from 'semantic-ui-react';
import { Checkbox } from '~/ui';
import styles from '../firstRun.css';