From 0fdb0e4c267cbed30be96bd34776536656a204b9 Mon Sep 17 00:00:00 2001 From: seoAreum <1971236@hansung.ac.kr> Date: Wed, 10 Jan 2024 15:46:58 +0900 Subject: [PATCH 01/30] =?UTF-8?q?init:=20=EC=BB=B4=ED=8F=AC=EB=84=8C?= =?UTF-8?q?=ED=8A=B8=20=EC=84=A4=EA=B3=84=20=EC=B4=88=EA=B8=B0=20=EC=84=B8?= =?UTF-8?q?=ED=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/BgColor/BgColor.style.ts | 9 +++++++++ src/LecueNote/components/BgColor/index.tsx | 11 +++++++++++ .../components/CreateNote/CreateNote.style.ts | 6 ++++++ src/LecueNote/components/CreateNote/index.tsx | 14 ++++++++++++++ src/LecueNote/components/Footer/Footer.style.ts | 9 +++++++++ src/LecueNote/components/Footer/index.tsx | 11 +++++++++++ .../components/SelectColor/SelectColor.style.ts | 5 +++++ src/LecueNote/components/SelectColor/index.tsx | 14 ++++++++++++++ .../components/TextColor/TextColor.style.ts | 9 +++++++++ src/LecueNote/components/TextColor/index.tsx | 11 +++++++++++ .../components/WriteNote/WriteNote.style.ts | 9 +++++++++ src/LecueNote/components/WriteNote/index.tsx | 11 +++++++++++ .../page/LeceuNotePage/LecueNotePage.style.ts | 11 +++++++++++ src/LecueNote/page/LeceuNotePage/index.tsx | 16 ++++++++++++++++ 14 files changed, 146 insertions(+) create mode 100644 src/LecueNote/components/BgColor/BgColor.style.ts create mode 100644 src/LecueNote/components/BgColor/index.tsx create mode 100644 src/LecueNote/components/CreateNote/CreateNote.style.ts create mode 100644 src/LecueNote/components/CreateNote/index.tsx create mode 100644 src/LecueNote/components/Footer/Footer.style.ts create mode 100644 src/LecueNote/components/Footer/index.tsx create mode 100644 src/LecueNote/components/SelectColor/SelectColor.style.ts create mode 100644 src/LecueNote/components/SelectColor/index.tsx create mode 100644 src/LecueNote/components/TextColor/TextColor.style.ts create mode 100644 src/LecueNote/components/TextColor/index.tsx create mode 100644 src/LecueNote/components/WriteNote/WriteNote.style.ts create mode 100644 src/LecueNote/components/WriteNote/index.tsx create mode 100644 src/LecueNote/page/LeceuNotePage/LecueNotePage.style.ts create mode 100644 src/LecueNote/page/LeceuNotePage/index.tsx diff --git a/src/LecueNote/components/BgColor/BgColor.style.ts b/src/LecueNote/components/BgColor/BgColor.style.ts new file mode 100644 index 00000000..9b074b19 --- /dev/null +++ b/src/LecueNote/components/BgColor/BgColor.style.ts @@ -0,0 +1,9 @@ +import styled from '@emotion/styled'; + +export const Wrapper = styled.div` + display: flex; +`; + +export const Contents = styled.p` + color: blue; +`; diff --git a/src/LecueNote/components/BgColor/index.tsx b/src/LecueNote/components/BgColor/index.tsx new file mode 100644 index 00000000..6e28e513 --- /dev/null +++ b/src/LecueNote/components/BgColor/index.tsx @@ -0,0 +1,11 @@ +import * as S from './BgColor.style'; + +function BgColor() { + return ( + + BgColor + + ); +} + +export default BgColor; diff --git a/src/LecueNote/components/CreateNote/CreateNote.style.ts b/src/LecueNote/components/CreateNote/CreateNote.style.ts new file mode 100644 index 00000000..788baba2 --- /dev/null +++ b/src/LecueNote/components/CreateNote/CreateNote.style.ts @@ -0,0 +1,6 @@ +import styled from '@emotion/styled'; + +export const Wrapper = styled.div` + display: flex; + flex-direction: column; +`; diff --git a/src/LecueNote/components/CreateNote/index.tsx b/src/LecueNote/components/CreateNote/index.tsx new file mode 100644 index 00000000..db18f86b --- /dev/null +++ b/src/LecueNote/components/CreateNote/index.tsx @@ -0,0 +1,14 @@ +import SelectColor from '../SelectColor'; +import WriteNote from '../WriteNote'; +import * as S from './CreateNote.style'; + +function CreateNote() { + return ( + + + + + ); +} + +export default CreateNote; diff --git a/src/LecueNote/components/Footer/Footer.style.ts b/src/LecueNote/components/Footer/Footer.style.ts new file mode 100644 index 00000000..9b074b19 --- /dev/null +++ b/src/LecueNote/components/Footer/Footer.style.ts @@ -0,0 +1,9 @@ +import styled from '@emotion/styled'; + +export const Wrapper = styled.div` + display: flex; +`; + +export const Contents = styled.p` + color: blue; +`; diff --git a/src/LecueNote/components/Footer/index.tsx b/src/LecueNote/components/Footer/index.tsx new file mode 100644 index 00000000..4bd7045c --- /dev/null +++ b/src/LecueNote/components/Footer/index.tsx @@ -0,0 +1,11 @@ +import * as S from './Footer.style'; + +function Footer() { + return ( + + Footer + + ); +} + +export default Footer; diff --git a/src/LecueNote/components/SelectColor/SelectColor.style.ts b/src/LecueNote/components/SelectColor/SelectColor.style.ts new file mode 100644 index 00000000..fa9ba94f --- /dev/null +++ b/src/LecueNote/components/SelectColor/SelectColor.style.ts @@ -0,0 +1,5 @@ +import styled from '@emotion/styled'; + +export const Wrapper = styled.div` + display: flex; +`; diff --git a/src/LecueNote/components/SelectColor/index.tsx b/src/LecueNote/components/SelectColor/index.tsx new file mode 100644 index 00000000..fc2b8f04 --- /dev/null +++ b/src/LecueNote/components/SelectColor/index.tsx @@ -0,0 +1,14 @@ +import BgColor from '../BgColor'; +import TextColor from '../TextColor'; +import * as S from './SelectColor.style'; + +function SelectColor() { + return ( + + + + + ); +} + +export default SelectColor; diff --git a/src/LecueNote/components/TextColor/TextColor.style.ts b/src/LecueNote/components/TextColor/TextColor.style.ts new file mode 100644 index 00000000..9b074b19 --- /dev/null +++ b/src/LecueNote/components/TextColor/TextColor.style.ts @@ -0,0 +1,9 @@ +import styled from '@emotion/styled'; + +export const Wrapper = styled.div` + display: flex; +`; + +export const Contents = styled.p` + color: blue; +`; diff --git a/src/LecueNote/components/TextColor/index.tsx b/src/LecueNote/components/TextColor/index.tsx new file mode 100644 index 00000000..390c1f3e --- /dev/null +++ b/src/LecueNote/components/TextColor/index.tsx @@ -0,0 +1,11 @@ +import * as S from './TextColor.style'; + +function TextColor() { + return ( + + TextColor + + ); +} + +export default TextColor; diff --git a/src/LecueNote/components/WriteNote/WriteNote.style.ts b/src/LecueNote/components/WriteNote/WriteNote.style.ts new file mode 100644 index 00000000..9b074b19 --- /dev/null +++ b/src/LecueNote/components/WriteNote/WriteNote.style.ts @@ -0,0 +1,9 @@ +import styled from '@emotion/styled'; + +export const Wrapper = styled.div` + display: flex; +`; + +export const Contents = styled.p` + color: blue; +`; diff --git a/src/LecueNote/components/WriteNote/index.tsx b/src/LecueNote/components/WriteNote/index.tsx new file mode 100644 index 00000000..4458f422 --- /dev/null +++ b/src/LecueNote/components/WriteNote/index.tsx @@ -0,0 +1,11 @@ +import * as S from './WriteNote.style'; + +function WriteNote() { + return ( + + WriteNote + + ); +} + +export default WriteNote; diff --git a/src/LecueNote/page/LeceuNotePage/LecueNotePage.style.ts b/src/LecueNote/page/LeceuNotePage/LecueNotePage.style.ts new file mode 100644 index 00000000..286cb659 --- /dev/null +++ b/src/LecueNote/page/LeceuNotePage/LecueNotePage.style.ts @@ -0,0 +1,11 @@ +import styled from '@emotion/styled'; + +export const Wrapper = styled.div` + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + + width: 100vw; + height: 100dvh; +`; diff --git a/src/LecueNote/page/LeceuNotePage/index.tsx b/src/LecueNote/page/LeceuNotePage/index.tsx new file mode 100644 index 00000000..9c8283a7 --- /dev/null +++ b/src/LecueNote/page/LeceuNotePage/index.tsx @@ -0,0 +1,16 @@ +// import Header from '../../../components/common/Header'; +import CreateNote from '../../components/CreateNote'; +import Footer from '../../components/Footer'; +import * as S from './LecueNotePage.style'; + +function LecueNotePage() { + return ( + + {/*
*/} + +