Skip to content

Commit d187f91

Browse files
committed
remove it
1 parent b5370c9 commit d187f91

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

front-end/src/Signup.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
import React, { useState, useEffect } from "react";
2-
import { Link, Navigate, useSearchParams } from "react-router-dom";
2+
import { Link, Navigate } from "react-router-dom";
33
import axios from "axios";
44
// import logo from './logo.svg';
55
import "./Login.css";
66

77
const Signup = props => {
8-
// let [urlSearchParams] = useSearchParams() // get access to the URL query string parameters
9-
108
// create state variables to hold username and password
119
const [response, setResponse] = useState({}); // the API will return an object with a JWT token, if the user logs in successfully
1210
const [errorMessage, setErrorMessage] = useState("");

0 commit comments

Comments
 (0)