This commit is contained in:
Elijah Lucian
2021-04-11 14:42:56 -07:00
parent a891fa6a50
commit 0185aa5eec
10 changed files with 22 additions and 48 deletions

View File

@@ -1,10 +1,9 @@
import React from 'react'
import { BrowserRouter } from 'react-router-dom'
import { UserContextProvider } from './contexts/UserContext'
import { CoreLayout } from './layout/CoreLayout'
import './scss/App.scss'
import './scss/app.scss'
function App() {
const App = () => {
return (
<BrowserRouter>
<UserContextProvider>

View File

@@ -1,4 +1,4 @@
import { User } from '../types'
import { User } from '../../types'
export const mockUser: User = {
username: 'TestUser42',

View File

@@ -1,7 +1,7 @@
import { message } from 'antd'
import axios from 'axios'
import { User } from '../types'
import { mockUser } from '../data'
import { mockUser } from './data'
import { JWT, getJWT, setHeaders, setJWT, wipeJWT } from '../utils/jwt'
const dev = process.env.NODE_ENV === 'development'

View File

@@ -1,8 +1,3 @@
import React from 'react'
import { RouteChildrenProps } from 'react-router'
type Props = RouteChildrenProps & {}
export const Dashboard = (_: Props) => {
export const Dashboard = () => {
return <p>a dashboard</p>
}

View File

@@ -1,4 +1,4 @@
import React, { FormEvent, useState } from 'react'
import { FormEvent, useState } from 'react'
import { useUserContext } from '../contexts/UserContext'
export const Login = () => {

View File

@@ -1,7 +1,3 @@
import React from 'react'
type Props = {}
export const Profile = (props: Props) => {
export const Profile = () => {
return <p>Look, A user profile!</p>
}

View File

@@ -1,29 +1,26 @@
.ant-layout-header.app-header {
display: flex;
display: flex;
flex-direction: row;
justify-content: space-between;
vertical-align: middle;
padding: 0 1rem;
a {
font-size: 1.2rem;
font-weight: bold;
}
a {
font-size: 1.2rem;
font-weight: bold;
}
div {
display: flex;
vertical-align: middle;
height: 100%;
* {
* {
margin: auto 0.5rem;
}
}
h3.ant-typography {
margin: auto 0 !important;
}
@@ -36,4 +33,4 @@
min-height: 100vh;
// background-color: #444;
// color: white;
}
}