Fixed forms to import from correct location

This commit is contained in:
Ceferino Patino 2022-04-13 21:57:33 -05:00
commit c631e4e6b5
3 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@ import React from 'react';
import { Link } from 'react-router-dom';
import { Box, Checkbox, FormControlLabel, Typography } from '@mui/material';
import Form from '../Form';
import Form from './Form';
import { FormSubmit, FormTextField } from './StyledElements';
function Login({

View file

@ -2,7 +2,7 @@ import React from 'react';
import { Link } from 'react-router-dom';
import { Box, TextField, Typography } from '@mui/material';
import Form from '../Form';
import Form from './Form';
import { FormSubmit, FormTextField } from './StyledElements';
function RegisterForm({ form, handleSubmit, handleChange, error }) {

View file

@ -1,7 +1,7 @@
import React from 'react';
import { Typography } from '@mui/material';
import Form from '../Form';
import Form from './Form';
import { FormSubmit, FormTextField } from './StyledElements';
function UpdateOrganizationForm({ name, handleSubmit, handleChange }) {