Skip to content

Commit

Permalink
Merge pull request #165 from Board-Buddy/Feat/#31
Browse files Browse the repository at this point in the history
 Feat: 마이페이지 위치 설정 기능 추가
  • Loading branch information
ChaeYubin authored Aug 7, 2024
2 parents 5214bd7 + 8a00744 commit fbe696e
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/containers/profile/LocationSetting.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import { ChevronRight } from 'lucide-react';
import Link from 'next/link';

const LocationSetting = () => {
return (
<div className="border-b-[1px] border-gray-200 px-1 py-4">
<div className="flex justify-between items-center text-md">
<div className="flex gap-2">위치 재설정</div>
<ChevronRight className="w-5 h-5 text-gray-700 ml-1" />
<Link href="/setting/location">
<div className="border-b-[1px] border-gray-200 px-1 py-4">
<div className="flex justify-between items-center text-md">
<div className="flex gap-2">위치 재설정</div>
<ChevronRight className="w-5 h-5 text-gray-700 ml-1" />
</div>
</div>
</div>
</Link>
);
};

Expand Down

0 comments on commit fbe696e

Please sign in to comment.