diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-14 13:27:01 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-14 13:27:01 +0300 |
commit | 31a196a76513df809ee91427129926370de551ba (patch) | |
tree | 9ce14806fd8da9393de27ab3747a700546e6bd86 /src/components/Select.tsx | |
parent | 887688bb93b56cf2bd6ec42230912ff7f0513a1d (diff) | |
download | commercel-ui-31a196a76513df809ee91427129926370de551ba.tar.gz |
feat: add useOptions hook
Diffstat (limited to 'src/components/Select.tsx')
-rw-r--r-- | src/components/Select.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Select.tsx b/src/components/Select.tsx index 18eb0ed..595208d 100644 --- a/src/components/Select.tsx +++ b/src/components/Select.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { Field } from 'formik'; -interface Option { +export interface Option { key: string; label: string; } |