Skip to content

Commit

Permalink
docs: Changed the folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Damla Koksal committed Oct 27, 2020
1 parent 84611f6 commit 18a43c5
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/layout/layout.component.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";

import AnnouncementBar from "../announcement-bar/announcement-bar.component";
import AnnouncementBar from "./announcement-bar/announcement-bar.component";
import Header from "./header/header.component";

import Footer from "./footer/footer.component";
Expand Down
File renamed without changes.
5 changes: 3 additions & 2 deletions src/pages/homepage/homepage.component.jsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
import React from "react";
import Layout from "../../components/layout/layout.component";
import Section from "../../components/layout/section/section.component";
import Section from "../../components/section/section.component";

import "./homepage.styles.scss";

export default function HomePage() {
return (
<>
<Layout>
<Section>test</Section>
<Section BgColor="pink">test</Section>
<Section BgColor="white">test2</Section>
<Section BgColor="#ebebeb">test3</Section>
</Layout>
</>
);
Expand Down

0 comments on commit 18a43c5

Please sign in to comment.