-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9324adc
commit 3656f2f
Showing
4 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import Button from "@common/components/Button.jsx"; | ||
|
||
function EventEditContainer({title, children}) | ||
{ | ||
return <section className="flex flex-col gap-8"> | ||
<div className="flex w-full justify-between"> | ||
<div> | ||
<h2 className="text-title-m font-bold">{title}</h2> | ||
<p className="text-detail-l">*는 필수 입력</p> | ||
</div> | ||
<div> | ||
<Button>임시저장 불러오기</Button> | ||
<Button>임시저장</Button> | ||
<Button>등록</Button> | ||
</div> | ||
</div> | ||
{children} | ||
</section> | ||
} | ||
|
||
export default EventEditContainer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import Input from "@common/components/Input.jsx"; | ||
|
||
function EventEditor({defaultValue}) | ||
{ | ||
return <div> | ||
<label> | ||
<span>이벤트 명<sup>*</sup></span> | ||
<Input /> | ||
</label> | ||
<label> | ||
<span>이벤트 ID</span> | ||
<span>(대충 이벤트 id 들어감)</span> | ||
</label> | ||
<div> | ||
<span>이벤트 기간<sup>*</sup></span> | ||
|
||
</div> | ||
</div> | ||
} | ||
|
||
export default EventEditor; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters