feature: add user pass popups and remove user popup

This commit is contained in:
Jordan Knott
2020-07-13 16:20:36 -05:00
parent 609baa98aa
commit d8daa60729
2 changed files with 62 additions and 8 deletions

View File

@ -104,11 +104,12 @@ type SelectProps = {
onChange: (e: any) => void;
value: any;
options: Array<any>;
className?: string;
};
const SelectElement: React.FC<SelectProps> = ({ onChange, value, options, label }) => {
const SelectElement: React.FC<SelectProps> = ({ onChange, value, options, label, className }) => {
return (
<SelectContainer>
<SelectContainer className={className}>
<Select
onChange={(e: any) => {
onChange(e);