Browse Source

Clearing out the auto generated stufF

Kirk Trombley 5 years ago
parent
commit
1482eecf8c
3 changed files with 5 additions and 43 deletions
  1. 0 28
      src/App.css
  2. 2 15
      src/App.js
  3. 3 0
      src/components/StartPage.jsx

+ 0 - 28
src/App.css

@@ -1,33 +1,5 @@
 .App {
   text-align: center;
-}
-
-.App-logo {
-  animation: App-logo-spin infinite 20s linear;
-  height: 40vmin;
-  pointer-events: none;
-}
-
-.App-header {
   background-color: #282c34;
-  min-height: 100vh;
-  display: flex;
-  flex-direction: column;
-  align-items: center;
-  justify-content: center;
-  font-size: calc(10px + 2vmin);
   color: white;
 }
-
-.App-link {
-  color: #61dafb;
-}
-
-@keyframes App-logo-spin {
-  from {
-    transform: rotate(0deg);
-  }
-  to {
-    transform: rotate(360deg);
-  }
-}

+ 2 - 15
src/App.js

@@ -1,24 +1,11 @@
 import React from 'react';
-import logo from './logo.svg';
 import './App.css';
+import StartPage from './components/StartPage';
 
 function App() {
   return (
     <div className="App">
-      <header className="App-header">
-        <img src={logo} className="App-logo" alt="logo" />
-        <p>
-          Edit <code>src/App.js</code> and save to reload.
-        </p>
-        <a
-          className="App-link"
-          href="https://reactjs.org"
-          target="_blank"
-          rel="noopener noreferrer"
-        >
-          Learn React
-        </a>
-      </header>
+      <StartPage/>
     </div>
   );
 }

+ 3 - 0
src/components/StartPage.jsx

@@ -0,0 +1,3 @@
+import React from "react";
+
+export default () => <div>WIP</div>