b666cd2657
* feat: initial rewrite without status indicators * feat: status icon as a component and add to the node setup * feat: added input list item component * feat: improved the topology status info * fix: disabled state of the buttons * chore: removed unused components * chore: remove debug console log * fix: deposit modal helper text
22 lines
706 B
TypeScript
22 lines
706 B
TypeScript
import type { ReactElement } from 'react'
|
|
|
|
import DebugConnectionCheck from './SetupSteps/DebugConnectionCheck'
|
|
import NodeConnectionCheck from './SetupSteps/NodeConnectionCheck'
|
|
import VersionCheck from './SetupSteps/VersionCheck'
|
|
import EthereumConnectionCheck from './SetupSteps/EthereumConnectionCheck'
|
|
import ChequebookDeployFund from './SetupSteps/ChequebookDeployFund'
|
|
import PeerConnection from './SetupSteps/PeerConnection'
|
|
|
|
export default function NodeSetupWorkflow(): ReactElement {
|
|
return (
|
|
<div>
|
|
<DebugConnectionCheck />
|
|
<VersionCheck />
|
|
<EthereumConnectionCheck />
|
|
<ChequebookDeployFund />
|
|
<NodeConnectionCheck />
|
|
<PeerConnection />
|
|
</div>
|
|
)
|
|
}
|