Fixed forms to import from correct location
This commit is contained in:
parent
9d1338c6c0
commit
c631e4e6b5
3 changed files with 3 additions and 3 deletions
|
|
@ -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({
|
||||
|
|
|
|||
|
|
@ -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 }) {
|
||||
|
|
|
|||
|
|
@ -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 }) {
|
||||
|
|
|
|||
Reference in a new issue