From b1e7a2a4d71fdc695e52645f1353e1858c0d53de Mon Sep 17 00:00:00 2001 From: Hip Date: Mon, 18 Oct 2021 00:53:59 +0700 Subject: [PATCH 01/16] setup section form --- src/container/form/index.js | 9 +++++++++ src/container/form/style.js | 3 +++ src/container/index.js | 4 ++++ 3 files changed, 16 insertions(+) create mode 100644 src/container/form/index.js create mode 100644 src/container/form/style.js diff --git a/src/container/form/index.js b/src/container/form/index.js new file mode 100644 index 0000000..321800f --- /dev/null +++ b/src/container/form/index.js @@ -0,0 +1,9 @@ +import React from 'react'; + +import { SectionWrapper } from './style.js'; + +const Form = () => { + return ; +}; + +export default Form; diff --git a/src/container/form/style.js b/src/container/form/style.js new file mode 100644 index 0000000..afc8533 --- /dev/null +++ b/src/container/form/style.js @@ -0,0 +1,3 @@ +import styled from 'styled-components'; + +export const SectionWrapper = styled.div``; diff --git a/src/container/index.js b/src/container/index.js index 324b935..e1b1942 100644 --- a/src/container/index.js +++ b/src/container/index.js @@ -5,6 +5,7 @@ import { Route, Switch, Redirect } from 'react-router-dom'; import Footer from './Footer'; import Header from './Header'; import Activities from './activities'; +import Form from './form'; import Home from './home'; const LandingPage = () => { @@ -18,6 +19,9 @@ const LandingPage = () => { + +
+