Fixed imports for form route utility elements
This commit is contained in:
parent
b62d177654
commit
7437610b93
5 changed files with 5 additions and 5 deletions
|
|
@ -3,7 +3,7 @@ import { Link } from 'react-router-dom';
|
|||
import { Box, Checkbox, FormControlLabel, Typography } from '@mui/material';
|
||||
|
||||
import Form from '../Form';
|
||||
import { FormSubmit, FormTextField } from '../StyledElements';
|
||||
import { FormSubmit, FormTextField } from './StyledElements';
|
||||
|
||||
function Login({
|
||||
form,
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import React from 'react';
|
||||
import { Box, Typography } from '@mui/material';
|
||||
|
||||
import { FormSubmit, FormTextField } from '../StyledElements';
|
||||
import { FormSubmit, FormTextField } from './StyledElements';
|
||||
|
||||
function RecoverForm({ form, error, success, handleSubmit, handleChange }) {
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { Link } from 'react-router-dom';
|
|||
import { Box, TextField, Typography } from '@mui/material';
|
||||
|
||||
import Form from '../Form';
|
||||
import { FormSubmit, FormTextField } from '../StyledElements';
|
||||
import { FormSubmit, FormTextField } from './StyledElements';
|
||||
|
||||
function RegisterForm({ form, handleSubmit, handleChange, error }) {
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import React from 'react';
|
||||
import { Box, Typography } from '@mui/material';
|
||||
|
||||
import { FormSubmit, FormTextField } from '../StyledElements';
|
||||
import { FormSubmit, FormTextField } from './StyledElements';
|
||||
|
||||
function ResetForm({ form, handleSubmit, handleChange, error }) {
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import React from 'react';
|
|||
import { Typography } from '@mui/material';
|
||||
|
||||
import Form from '../Form';
|
||||
import { FormSubmit, FormTextField } from '../StyledElements';
|
||||
import { FormSubmit, FormTextField } from './StyledElements';
|
||||
|
||||
function UpdateOrganizationForm({ name, handleSubmit, handleChange }) {
|
||||
return (
|
||||
|
|
|
|||
Reference in a new issue