login is part of the console (#107)

This commit is contained in:
Michael Quigley 2022-12-21 14:33:13 -05:00
parent ad515147b5
commit f6b36f3ca7
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import { BrowserRouter as Router, Route, Routes } from 'react-router-dom';
import Register from "./register/Register";
import Console from "./console/Console";
import {useEffect, useState} from "react";
import Login from "./login/Login";
import Login from "./console/login/Login";
const App = () => {
const [user, setUser] = useState();

View File

@ -1,5 +1,5 @@
import {useState} from "react";
import * as account from '../api/account';
import * as account from '../../api/account';
const Login = (props) => {
const [email, setEmail] = useState('');