🔨
This commit is contained in:
		@@ -6,6 +6,7 @@ services:
 | 
			
		||||
      context: ./frontend
 | 
			
		||||
    volumes:
 | 
			
		||||
      - ./frontend/src:/usr/src/frontend/src
 | 
			
		||||
      - ./frontend/public:/usr/src/frontend/public
 | 
			
		||||
    ports:
 | 
			
		||||
      - 3000:3000
 | 
			
		||||
    environment:
 | 
			
		||||
 
 | 
			
		||||
@@ -2,11 +2,14 @@
 | 
			
		||||
<html lang="en">
 | 
			
		||||
  <head>
 | 
			
		||||
    <meta charset="utf-8" />
 | 
			
		||||
    <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
 | 
			
		||||
    <link
 | 
			
		||||
      rel="icon"
 | 
			
		||||
      href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💎</text></svg>"
 | 
			
		||||
    />
 | 
			
		||||
    <meta name="viewport" content="width=device-width, initial-scale=1" />
 | 
			
		||||
    <meta name="theme-color" content="#000000" />
 | 
			
		||||
    <meta name="description" content="The emmest of vee pees" />
 | 
			
		||||
    <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
 | 
			
		||||
 | 
			
		||||
    <!--
 | 
			
		||||
      manifest.json provides metadata used when your web app is installed on a
 | 
			
		||||
      user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
 | 
			
		||||
 
 | 
			
		||||
@@ -1,23 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "short_name": "React App",
 | 
			
		||||
  "name": "Create React App Sample",
 | 
			
		||||
  "icons": [
 | 
			
		||||
    {
 | 
			
		||||
      "src": "favicon.ico",
 | 
			
		||||
      "sizes": "64x64 32x32 24x24 16x16",
 | 
			
		||||
      "type": "image/x-icon"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "src": "logo192.png",
 | 
			
		||||
      "type": "image/png",
 | 
			
		||||
      "sizes": "192x192"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "src": "logo512.png",
 | 
			
		||||
      "type": "image/png",
 | 
			
		||||
      "sizes": "512x512"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "short_name": "EZ MVP",
 | 
			
		||||
  "name": "MVP Django React",
 | 
			
		||||
  "start_url": ".",
 | 
			
		||||
  "display": "standalone",
 | 
			
		||||
  "theme_color": "#000000",
 | 
			
		||||
 
 | 
			
		||||
@@ -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>
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
import { User } from '../types'
 | 
			
		||||
import { User } from '../../types'
 | 
			
		||||
 | 
			
		||||
export const mockUser: User = {
 | 
			
		||||
  username: 'TestUser42',
 | 
			
		||||
@@ -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'
 | 
			
		||||
 
 | 
			
		||||
@@ -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>
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
import React, { FormEvent, useState } from 'react'
 | 
			
		||||
import { FormEvent, useState } from 'react'
 | 
			
		||||
import { useUserContext } from '../contexts/UserContext'
 | 
			
		||||
 | 
			
		||||
export const Login = () => {
 | 
			
		||||
 
 | 
			
		||||
@@ -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>
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -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;
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user