From 60d925f425626110f5b821668e8642086862fa20 Mon Sep 17 00:00:00 2001 From: SeieunYoo Date: Wed, 14 Aug 2024 18:59:28 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Text,Space=20=EC=BB=B4=ED=8F=AC?= =?UTF-8?q?=EB=84=8C=ED=8A=B8=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/(afterLogin)/study-apply/page.tsx | 6 ++-- .../my-homework/DefaultHomeworkBox.tsx | 21 +++++++------- .../my-homework/TextFieldHomeworkBox.tsx | 28 ++++++++++--------- 3 files changed, 28 insertions(+), 27 deletions(-) diff --git a/apps/client/app/(afterLogin)/study-apply/page.tsx b/apps/client/app/(afterLogin)/study-apply/page.tsx index 61bde5fd..bf639501 100644 --- a/apps/client/app/(afterLogin)/study-apply/page.tsx +++ b/apps/client/app/(afterLogin)/study-apply/page.tsx @@ -1,6 +1,6 @@ import { css } from "@styled-system/css"; import { styled } from "@styled-system/jsx"; -import { Space, Table } from "@wow-class/ui"; +import { Space, Table, Text } from "@wow-class/ui"; import Button from "wowds-ui/Button"; import Tag from "wowds-ui/Tag"; @@ -8,9 +8,9 @@ const StudyApplyPage = () => { const array = [0, 1, 2]; return ( <> - + 신청 가능한 스터디 - + {array.map(() => ( { return ( - + 4주차 - -
+ + - + HTTP 통신 코드 작성하기 - + 제출 완료 -
+
종료 일시 : 2024년 5월 23일 23:59
@@ -37,14 +36,14 @@ export const DefaultHomeworkBox = () => { 2024-1-Web-Study/Week4
- + 글자수 충족 -
+ -
+ } diff --git a/apps/client/components/my-homework/TextFieldHomeworkBox.tsx b/apps/client/components/my-homework/TextFieldHomeworkBox.tsx index 9d027ce2..9e39feaa 100644 --- a/apps/client/components/my-homework/TextFieldHomeworkBox.tsx +++ b/apps/client/components/my-homework/TextFieldHomeworkBox.tsx @@ -1,6 +1,7 @@ "use client"; -import { Flex, styled } from "@styled-system/jsx"; +import { Flex } from "@styled-system/jsx"; +import { Space, Text } from "@wow-class/ui"; import { useState } from "react"; import Box from "wowds-ui/Box"; import Button from "wowds-ui/Button"; @@ -20,23 +21,23 @@ export const TextFieldHomeworkBox = () => { - + 레포지토리 - -
+ + - + 과제 제출을 위한 레포지토리 URL 입력하기 - + 제출 완료 -
- + + 입력하지 않으면 앞으로의 과제를 제출할 수 없어요. - -
+ + {!isSubmit && ( { {isSubmit && ( {value} @@ -63,7 +65,7 @@ export const TextFieldHomeworkBox = () => { )} -
+