Fixed merge errors
This commit is contained in:
parent
b813ddb3a8
commit
818fff5404
3 changed files with 3 additions and 5 deletions
|
|
@ -1,7 +1,5 @@
|
|||
import { Card, CardContent } from '@mui/material';
|
||||
import React, { useEffect } from 'react';
|
||||
import { Inbox, SendMail } from 'controllers';
|
||||
import { MdPreview } from 'components';
|
||||
import { useNavigate } from 'react-router-dom';
|
||||
|
||||
import { useUser } from 'contexts';
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@ import { composeMailFields } from 'services/fields';
|
|||
import { postMail } from 'services/mailServices';
|
||||
import { mailSchema } from 'services/schemas';
|
||||
import { useEffect } from 'react';
|
||||
import { useNavigate } from 'react-router-dom';
|
||||
import { useUser } from 'contexts';
|
||||
|
||||
export default function SendMailController() {
|
||||
const { userData } = useUser();
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import ResetForm from './ResetFormController';
|
|||
import SendMail from './SendMailController';
|
||||
import SearchForm from './SearchFormController';
|
||||
import UpdateForm from './UpdateFormController';
|
||||
import AnswerForm from './AnwerFormController';
|
||||
|
||||
export {
|
||||
AnswerForm,
|
||||
AskForm,
|
||||
|
|
@ -20,5 +20,4 @@ export {
|
|||
SendMail,
|
||||
SearchForm,
|
||||
UpdateForm,
|
||||
AnswerForm,
|
||||
};
|
||||
|
|
|
|||
Reference in a new issue