Skip to content

Commit

Permalink
fix(frontend): removed unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
thevinter committed Nov 4, 2021
1 parent c3feb50 commit d989ba8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion frontend/src/App.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import "./App.css";
import Login from "./Login.js";
import Navbar from "./Navbar";

function App() {
Expand Down
1 change: 0 additions & 1 deletion frontend/src/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { useState } from "react";
import "./Login.css";

function Login() {
let info = { name: "", password: "" };
const [name, setName] = useState("");
const [password, setPassword] = useState("");

Expand Down

0 comments on commit d989ba8

Please sign in to comment.