From 8dda59810cb0758c98a2d0e1daec850b0f3f848c Mon Sep 17 00:00:00 2001 From: Seanmclem Date: Tue, 1 Oct 2019 12:00:23 -0400 Subject: [PATCH] removed redundant app.js and react references --- src/components/app.js | 48 ------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 src/components/app.js diff --git a/src/components/app.js b/src/components/app.js deleted file mode 100644 index ab39b50..0000000 --- a/src/components/app.js +++ /dev/null @@ -1,48 +0,0 @@ -import React from 'react'; -import styled from 'styled-components'; - -const Container = styled.div` - display: flex; - align-items: center; - justify-content: center; - width: 100%; - height: 100vh; - font-family: 'Open Sans', sans-serif; -`; - -const Wrapper = styled.div` - display: flex; - flex-direction: column; - align-items: center; - justify-content: space-evenly; - width: 500px; - height: 40%; -`; - -const Title = styled.h1` - color: black; - font-size: 2.5rem; - font-weight: 700; -`; - -const Paragraph = styled.p` - color: black; - font-size: 1rem; -`; - -const Link = styled.a` - color: #00a8e8; -`; - -const App = () => ( - - - - React Minimal - - A simple and (relatively) minimal starter template for react. - - -); - -export default App;