Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
hhhello0507 committed Feb 2, 2025
1 parent 0a147fe commit 5a2bf86
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
4 changes: 1 addition & 3 deletions src/page/invitation/design/InvitationDesign.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,7 @@ function InvitationDesign() {
})}
/>
case OptionType.AutoFocus:
return <AutoFocusOption

/>
return <AutoFocusOption/>
}
}

Expand Down
19 changes: 9 additions & 10 deletions src/page/invitation/design/option/AutoFocusOption.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
import React from 'react';
import Text from "@designsystem/component/text";
import colors from "@designsystem/foundation/colors";
import {Row} from "@designsystem/component/flexLayout";

interface AutoFocusOptionProps {

}

function AutoFocusOption(
{

}: AutoFocusOptionProps
) {
function AutoFocusOption() {
return (
<div></div>
<Row padding={'36px 0'} $justifyContent={'center'}>
<Text type={'caption1'} color={colors.g500}>
청첩장 수정 시, 변경된 화면으로 자동으로 포커스가 이동합니다.
</Text>
</Row>
);
}

Expand Down

0 comments on commit 5a2bf86

Please sign in to comment.