mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
feat(webapp): send mail notification dialogs
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
// @ts-nocheck
|
||||
import { Form } from 'formik';
|
||||
import { FFormGroup, FInputGroup, FMultiSelect } from '@/components';
|
||||
|
||||
export function SendMailNotificationForm() {
|
||||
return (
|
||||
<Form>
|
||||
<FFormGroup label={'From'} name={'from'} inline={true} fastField={true}>
|
||||
<FMultiSelect
|
||||
items={[]}
|
||||
name={'from'}
|
||||
placeholder=""
|
||||
popoverProps={{ minimal: true }}
|
||||
/>
|
||||
</FFormGroup>
|
||||
|
||||
<FFormGroup label={'To'} name={'to'} inline={true} fastField={true}>
|
||||
<FMultiSelect
|
||||
items={[]}
|
||||
name={'to'}
|
||||
placeholder=""
|
||||
popoverProps={{ minimal: true }}
|
||||
/>
|
||||
</FFormGroup>
|
||||
|
||||
<FFormGroup
|
||||
label={'Subject'}
|
||||
name={'subject'}
|
||||
inline={true}
|
||||
fastField={true}
|
||||
>
|
||||
<FInputGroup name={'subject'} />
|
||||
</FFormGroup>
|
||||
</Form>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user