diff options
author | Steve Klebanoff <steve@0xproject.com> | 2018-10-25 03:53:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-25 03:53:18 +0800 |
commit | 059868e9942fed4616750d212e706f09d17f397b (patch) | |
tree | 7c70fcd71641479479ff831e9e665f7b8e69fa30 /packages/instant/src/components/retry_button.tsx | |
parent | 06ba26a6d30565e7c6c4032528089d30ecc39fdd (diff) | |
parent | 09f0bf7f0062bba51380ae904bff96baddf5f0f2 (diff) | |
download | dexon-0x-contracts-059868e9942fed4616750d212e706f09d17f397b.tar.gz dexon-0x-contracts-059868e9942fed4616750d212e706f09d17f397b.tar.zst dexon-0x-contracts-059868e9942fed4616750d212e706f09d17f397b.zip |
Merge pull request #1179 from 0xProject/feature/instant/processing-state
[instant] Success and Processing state
Diffstat (limited to 'packages/instant/src/components/retry_button.tsx')
-rw-r--r-- | packages/instant/src/components/retry_button.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/components/retry_button.tsx b/packages/instant/src/components/retry_button.tsx index 28547ce54..0d6188e6a 100644 --- a/packages/instant/src/components/retry_button.tsx +++ b/packages/instant/src/components/retry_button.tsx @@ -7,5 +7,5 @@ export interface RetryButtonProps { } export const RetryButton: React.StatelessComponent<RetryButtonProps> = props => { - return <SecondaryButton text="Try Again" onClick={props.onClick} />; + return <SecondaryButton onClick={props.onClick}>Try Again</SecondaryButton>; }; |