Merge pull request #72 from Permissionless-Software-Foundation/rearrange/configuration_view

Rearrange Configuration View
This commit is contained in:
Chris Troutner
2020-09-25 06:29:56 -07:00
committed by GitHub
2 changed files with 8 additions and 7 deletions
+1
View File
@@ -22,4 +22,5 @@ Standard workflow for setting up a development environment for working on this r
- `npm start`
## License
[MIT](./LICENSE.md)
+7 -7
View File
@@ -34,19 +34,19 @@ class Configure extends React.Component {
{/* // Default View */}
{_this.state.menuItem === 'Configure' && (
<>
<ConfigureInfo />
<Servers
setWalletInfo={_this.props.setWalletInfo}
walletInfo={_this.props.walletInfo}
setBchWallet={_this.props.setBchWallet}
/>
<JsonWebTokens
setWalletInfo={_this.props.setWalletInfo}
walletInfo={_this.props.walletInfo}
setBchWallet={_this.props.setBchWallet}
/>
<Servers
setWalletInfo={_this.props.setWalletInfo}
walletInfo={_this.props.walletInfo}
setBchWallet={_this.props.setBchWallet}
/>
<ConfigureInfo />
</>
)}