Fixed imports for form route utility elements

This commit is contained in:
Ceferino Patino 2022-04-13 19:16:16 -05:00
commit 7437610b93
5 changed files with 5 additions and 5 deletions

View file

@ -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,

View file

@ -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 (

View file

@ -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 (

View file

@ -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 (

View file

@ -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 (