a3c02dbf8a
* fix: use xDAI on Gnosis chain * fix: rename BZZ to xBZZ when on Gnosis chain * fix: replace MINIMUM_xDAI with MINIMUM_XDAI * fix: update xdai links to correct gnosis chain urls
11 lines
300 B
TypeScript
11 lines
300 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 xBZZ']} />
|
|
}
|