We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6db377e commit 1635186Copy full SHA for 1635186
src/pages/map/index.tsx
@@ -1,4 +1,4 @@
1
-import CummonButton from '@/shared/components/button/CommonButton';
+import CommonButton from '@/shared/components/button/CommonButton';
2
import { useState } from 'react';
3
4
export default function CourseSettingPreview() {
@@ -22,7 +22,7 @@ export default function CourseSettingPreview() {
22
<h1 className="text-title-lg text-gray-700 mb-4">코스 버튼 임시 화면</h1>
23
<div className="flex flex-wrap justify-center gap-4 max-w-[400px]">
24
{buttons.map(({ id, label }) => (
25
- <CummonButton
+ <CommonButton
26
key={id}
27
label={label}
28
variant={active === id ? 'active' : 'default'}
0 commit comments