Skip to content

Commit

Permalink
changes done in backk button final conflicts resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
ananyaj25 committed Jun 9, 2024
1 parent 25a209b commit 0dc6159
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/login/LoginSignup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ const LoginSignup = () => {

const [state, setState] = useState("Sign Up");


const [state, setState] = useState("Login");
const [formData, setFormData] = useState({
username: "",
password: "",
Expand Down Expand Up @@ -107,7 +105,7 @@ const LoginSignup = () => {
state === "Login" ? login() : signup();
}}
>
Sign Up


{state === "Login" ? "Login" : "Sign Up"}
</button>
Expand Down

0 comments on commit 0dc6159

Please sign in to comment.