We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ecaabf commit fef8165Copy full SHA for fef8165
src/app/(crew)/page.tsx
@@ -103,7 +103,11 @@ export default function HomePage() {
103
</Button>
104
</div>
105
<div className="flex-0 flex justify-between gap-2 md:gap-4">
106
+ <label htmlFor="region" className="sr-only">
107
+ 지역 선택
108
+ </label>
109
<DropDown
110
+ id="region"
111
name="region"
112
variant="default"
113
data={regionData.map((dataItem) => dataItem.main)}
@@ -114,7 +118,11 @@ export default function HomePage() {
114
118
setRegion(newValue as string);
115
119
}}
116
120
/>
121
+ <label htmlFor="sort" className="sr-only">
122
+ 정렬 선택
123
117
124
125
+ id="sort"
126
name="sort"
127
variant="sort"
128
data={[
0 commit comments