diff --git a/src/pages/Team/Create.tsx b/src/pages/Team/Create.tsx index 38445ae..634fb28 100644 --- a/src/pages/Team/Create.tsx +++ b/src/pages/Team/Create.tsx @@ -3,6 +3,7 @@ import { Sidebar } from '@/components/common/sidebar'; import { Input } from '@/components/common/Input'; import { SelectBar } from '@/components/common/SelectBar'; import { useState } from 'react'; +import { XButton } from '@/components/common/XButton'; type ProjectType = '동아리' | '팀 프로젝트' | '개인 프로젝트' | '기타'; const projectKinds: ProjectType[] = ['동아리', '팀 프로젝트', '개인 프로젝트', '기타']; @@ -21,7 +22,12 @@ export const TeamCreate = () => { -
hello world
+ + + + 학생 추가 + + @@ -55,6 +61,12 @@ const Title = styled.div` cursor: default; `; +const TeamAddWrapper = styled.div` + display: flex; + align-items: end; + gap: 10px; +`; + const Form = styled.div` margin-top: 56px; width: 1120px;