chore: moving file structure of components

This commit is contained in:
Kyle Gill
2019-05-18 14:56:36 -06:00
parent b4d43aaa66
commit f8f6eda47b
15 changed files with 6 additions and 20 deletions

View File

@@ -1,2 +0,0 @@
import Icon from "./Icon"
export default Icon

View File

@@ -1,2 +0,0 @@
import Layout from "./Layout"
export default Layout

View File

@@ -10,9 +10,9 @@ import { withTheme } from "emotion-theming"
import { SIZES } from "styles/constants"
import { todayUrl, yearUrl } from "utils/date"
import Logo from "../Logo"
import Icon from "../Icon"
import { withAuthentication } from "../session"
import Logo from "components/Logo"
import Icon from "components/Icon"
import { withAuthentication } from "components/session"
const Header = styled.div`
background-color: ${props => props.theme.colors.headerBackground};

View File

@@ -1,3 +0,0 @@
import Navbar, { SimpleNavbar } from "./Navbar"
export default Navbar
export { SimpleNavbar }

View File

@@ -1,2 +0,0 @@
import PrivateRoute from "./PrivateRoute"
export default PrivateRoute

View File

@@ -2,9 +2,9 @@ import React from "react"
import styled from "@emotion/styled"
import { withTheme } from "emotion-theming"
import Icon from "../Icon"
import { H1 } from "../elements"
import { StyledLink as Link } from "../elements"
import Icon from "components/Icon"
import { H1 } from "components/elements"
import { StyledLink as Link } from "components/elements"
const SeekHeader = styled.header`
display: flex;

View File

@@ -1,2 +0,0 @@
import Seek from "./Seek"
export default Seek

View File

@@ -1,2 +0,0 @@
import SignOut from "./SignOut"
export default SignOut

View File

@@ -1 +0,0 @@
export * from "./elements"