mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
37 lines
923 B
JavaScript
37 lines
923 B
JavaScript
|
'use strict';
|
||
|
|
||
|
import React from 'react';
|
||
|
import Router from 'react-router';
|
||
|
|
||
|
import AccountSettings from './account_settings';
|
||
|
import BitcoinWalletSettings from './bitcoin_wallet_settings';
|
||
|
import ContractSettings from './contract_settings';
|
||
|
import APISettings from './api_settings';
|
||
|
|
||
|
|
||
|
let SettingsContainer = React.createClass({
|
||
|
propTypes: {
|
||
|
children: React.PropTypes.oneOfType([
|
||
|
React.PropTypes.arrayOf(React.PropTypes.element),
|
||
|
React.PropTypes.element])
|
||
|
},
|
||
|
|
||
|
mixins: [Router.Navigation],
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<div className="settings-container">
|
||
|
<AccountSettings />
|
||
|
{this.props.children}
|
||
|
<APISettings />
|
||
|
<BitcoinWalletSettings />
|
||
|
<ContractSettings />
|
||
|
<br />
|
||
|
<br />
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default SettingsContainer;
|