diff --git a/frontend/src/Modal/index.tsx b/frontend/src/Modal/index.tsx new file mode 100644 index 00000000..a6cfda14 --- /dev/null +++ b/frontend/src/Modal/index.tsx @@ -0,0 +1,46 @@ +import * as React from 'react'; + +interface ModalProps { + handleSubmit: () => void; + isCancellable: boolean; + handleCancel?: () => void; + render: () => JSX.Element; + modalState: string; + isError: boolean; +} +const Modal = (props: ModalProps) => { + return ( +
+ Please enter a valid API key +
+ )} +