diff options
author | Fred Carlsen <fred@sjelfull.no> | 2018-12-14 19:48:54 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-14 19:49:59 +0800 |
commit | 907aa7a844f8c69404a52e53cfbeb7276b3746c3 (patch) | |
tree | 24ea9acec804825fc021e7e711940de4b8370992 /packages | |
parent | 9695be13c3f98242975079f7ff85ef3727badbca (diff) | |
download | dexon-sol-tools-907aa7a844f8c69404a52e53cfbeb7276b3746c3.tar dexon-sol-tools-907aa7a844f8c69404a52e53cfbeb7276b3746c3.tar.gz dexon-sol-tools-907aa7a844f8c69404a52e53cfbeb7276b3746c3.tar.bz2 dexon-sol-tools-907aa7a844f8c69404a52e53cfbeb7276b3746c3.tar.lz dexon-sol-tools-907aa7a844f8c69404a52e53cfbeb7276b3746c3.tar.xz dexon-sol-tools-907aa7a844f8c69404a52e53cfbeb7276b3746c3.tar.zst dexon-sol-tools-907aa7a844f8c69404a52e53cfbeb7276b3746c3.zip |
Fix typedef
Diffstat (limited to 'packages')
-rw-r--r-- | packages/website/ts/@next/components/definition.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/website/ts/@next/components/definition.tsx b/packages/website/ts/@next/components/definition.tsx index 982fbfe72..4155db472 100644 --- a/packages/website/ts/@next/components/definition.tsx +++ b/packages/website/ts/@next/components/definition.tsx @@ -18,7 +18,7 @@ interface Props { icon: string; iconSize?: 'medium' | 'large' | number; title: string; - description: Node | string; + description: React.ReactNode | string; actions?: Action[]; } |