import * as React from 'react'; import { Container } from 'ts/components/ui/container'; import { Text } from 'ts/components/ui/text'; export interface SetAllowancesOnboardingStepProps { zrxAllowanceToggle: React.ReactNode; ethAllowanceToggle: React.ReactNode; } export const SetAllowancesOnboardingStep: React.StatelessComponent = ({ ethAllowanceToggle, zrxAllowanceToggle, }) => (
Unlock your tokens for trading. You only need to do this once for each token.
Enable WETH {ethAllowanceToggle}
Enable ZRX {zrxAllowanceToggle}
);