a768b4ea06
* feat: add top up * chore: remove console.log * build: add pseudo-missing dependency * feat: add missing top up components * fix: crypto route * feat(wip): add gift wallet logic * fix: fix gift wallet flows * feat: simplify flow without fund step * feat: add loading screens * fix: remove alert * fix: prepend http if needed * fix: fix bug that was reintroduced with merge * refactor: rename minusEther to minusBaseUnits * fix: remove unused setStartedAt * build: remove unused dependency
11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import { ReactElement } from 'react'
|
|
import { ProgressIndicator } from '../../components/ProgressIndicator'
|
|
|
|
interface Props {
|
|
index: number
|
|
}
|
|
|
|
export function TopUpProgressIndicator({ index }: Props): ReactElement {
|
|
return <ProgressIndicator index={index} steps={['Buy xDAI', 'Swap BZZ']} />
|
|
}
|