Currently utilizing React Mui for components and encountering no errors in either the Chrome inspector or terminal. How can this be resolved?
No error notifications are being displayed by eslint or Chrome Inspector.
The form submission functions correctly, as does the input field itself when placed within the render's return statement or imported as a separate component. However, it fails to work as intended in the current coding configuration outlined below.
What could be causing this issue?
Below is the code snippet:import React, { useState } from "react";
import {
Box,
Container,
Stack,
TextField,
Typography,
Button,
Divider,
} from "@mui/material";
import { styled } from "@mui/material/styles";
import { Link, useNavigate } from "react-router-dom";
const Register = () => {...}