UI - added fixes for PR comments

This commit is contained in:
Hoang Pham 2021-12-20 15:55:52 -06:00
parent 602145b390
commit a24a1e8922
4 changed files with 5 additions and 9 deletions

View file

@ -1,12 +1,12 @@
import Login from 'App/AuthFlow/Login';
import Main from 'Main';
import { BrowserRouter, Route, Switch } from 'react-router-dom';
import { MuiThemeProvider } from '@material-ui/core/styles';
import Main from 'Main';
import Login from 'App/AuthFlow/Login';
import { useAuth } from 'services/useAuth';
import PrivateRoute from 'shared/PrivateRoute/PrivateRoute';
import { lightTheme } from 'theme/';
import { MuiThemeProvider } from '@material-ui/core/styles';
const App = () => {
const auth = useAuth();

View file

@ -1,9 +1,8 @@
import { ReactComponent as MLogo } from 'assets/m-bug-alt.svg';
import Card from '@material-ui/core/Card';
import CardContent from '@material-ui/core/CardContent';
import CardHeader from '@material-ui/core/CardHeader';
import { ReactComponent as MLogo } from 'assets/m-bug-alt.svg';
import css from './AuthFlow.module.scss';
import SignInButton from './SignInButton';
@ -11,7 +10,6 @@ function Login(props) {
const renderLoginForm = () => (
<Card>
<CardHeader
// title={"Sign in"}
subheader={"Sign in to continue"}
/>
<CardContent>

View file

@ -1,5 +1,4 @@
import React from 'react';
import { Button } from '@material-ui/core';
interface Props {

View file

@ -1,5 +1,4 @@
import React from 'react';
import { Button } from '@material-ui/core';
interface Props {