summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Select.tsx2
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;
}