feat: create structure for components

This commit is contained in:
RadoslavDimchev 2023-08-24 12:56:03 +03:00
parent 45363f57a1
commit f330356850
14 changed files with 7 additions and 7 deletions

View File

@ -23,7 +23,7 @@ const Overview = () => {
Becoming a validator is a big responsibility with important preparation steps. Only Becoming a validator is a big responsibility with important preparation steps. Only
start the deposit process when youre ready. start the deposit process when youre ready.
</Text> </Text>
<Text size={19} color="#939BA1" type={''}> <Text size={19} color="#939BA1">
By running a validator, you'll be responsible for securing the network and receive By running a validator, you'll be responsible for securing the network and receive
continuous payouts for actions that help the network reach consensus. continuous payouts for actions that help the network reach consensus.
</Text> </Text>

View File

@ -1,13 +1,13 @@
import { YStack } from 'tamagui' import { YStack } from 'tamagui'
import FormStepper from './FormStepper' import FormStepper from './FormStepper/FormStepper'
import PageWrapperGradient from '../../components/PageWrappers/PageWrapperGradient' import PageWrapperGradient from '../../components/PageWrappers/PageWrapperGradient'
import Titles from '../../components/General/Titles' import Titles from '../../components/General/Titles'
import { useState } from 'react' import { useState } from 'react'
import Overview from './Overview' import Overview from './Overview/Overview'
import KeyGeneration from './KeyGeneration' import KeyGeneration from './KeyGeneration/KeyGeneration'
import Advicsories from './Advicsories' import Advicsories from './Advicsories/Advicsories'
import ValidatorSetup from './ValidatorSetup' import ValidatorSetup from './ValidatorSetup/ValidatorSetup'
import Activation from './Activation' import Activation from './Activation/Activation'
const ValidatorOnboarding = () => { const ValidatorOnboarding = () => {
const [activeStep, setActiveStep] = useState(0) const [activeStep, setActiveStep] = useState(0)