diff options
author | eug-vs <eug-vs@keemail.me> | 2021-04-17 13:08:48 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-04-17 13:09:55 +0300 |
commit | a4a1c456e0788ca52261efb38ff3998710a42a59 (patch) | |
tree | f99725f250c5fc7ae8889760a38f3e4d14a6cc61 /src/components/Select.tsx | |
parent | f0e470472a16957217b091489afdab2006719294 (diff) | |
download | commercel-ui-a4a1c456e0788ca52261efb38ff3998710a42a59.tar.gz |
feat: add Filters to Page
Diffstat (limited to 'src/components/Select.tsx')
-rw-r--r-- | src/components/Select.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/Select.tsx b/src/components/Select.tsx index 6b04e20..e65f8c4 100644 --- a/src/components/Select.tsx +++ b/src/components/Select.tsx @@ -34,4 +34,5 @@ const SelectBase: React.FC<Props> = ({ label, options, ...props }) => { const Select: React.FC<Props> = props => <Field {...props} as={SelectBase} />; +export { SelectBase }; export default Select; |