스타일 수정중
This commit is contained in:
@@ -224,6 +224,17 @@ export default function CreateScreenModal({ open, onOpenChange, onCreated }: Cre
|
||||
<Label htmlFor="screenName">화면명</Label>
|
||||
<Input id="screenName" value={screenName} onChange={(e) => setScreenName(e.target.value)} />
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="description">설명</Label>
|
||||
<Input
|
||||
id="description"
|
||||
value={description}
|
||||
onChange={(e) => setDescription(e.target.value)}
|
||||
placeholder="화면 설명을 입력하세요 (모달에 표시됨)"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="screenCode">화면 코드</Label>
|
||||
<Input
|
||||
|
||||
Reference in New Issue
Block a user