Add colored nicks settings option
This commit is contained in:
parent
ec03db4db6
commit
6c6a9e12cf
27 changed files with 577 additions and 109 deletions
|
@ -1,7 +1,13 @@
|
|||
import { connect } from 'react-redux';
|
||||
import { createStructuredSelector } from 'reselect';
|
||||
import Settings from 'components/pages/Settings';
|
||||
import { getSettings, setCert, setKey, uploadCert } from 'state/settings';
|
||||
import {
|
||||
getSettings,
|
||||
setSetting,
|
||||
setCert,
|
||||
setKey,
|
||||
uploadCert
|
||||
} from 'state/settings';
|
||||
|
||||
const mapState = createStructuredSelector({
|
||||
settings: getSettings
|
||||
|
@ -10,7 +16,8 @@ const mapState = createStructuredSelector({
|
|||
const mapDispatch = {
|
||||
onCertChange: setCert,
|
||||
onKeyChange: setKey,
|
||||
uploadCert
|
||||
uploadCert,
|
||||
setSetting
|
||||
};
|
||||
|
||||
export default connect(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue