Skip to content

Commit

Permalink
fix: 홈으로 돌아가기 활성화
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunkkkk committed Aug 13, 2024
1 parent 89fd538 commit bfe08ef
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Caecae/src/components/FindingGame/FindingGameResult.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {
initFindingGameState,
} from "../../jobs/FindingGame/FindingGameWork";
import { useExistState, store } from "../../shared/Hyundux/index";
import { Link } from "../../shared/Hyunouter";

const FindingGameResult = () => {
const state = useExistState(initFindingGameState);
Expand Down Expand Up @@ -51,9 +52,11 @@ const FindingGameResult = () => {
</div>
<div className="flex-grow"></div>
<div className="bg-[#002C5F] flex justify-center items-center w-10/12 py-[14px] mb-[40px]">
<p className="text-[white] font-bold text-[18px]">
이벤트 홈으로 돌아가기
</p>
<Link to="/findcasper">
<p className="text-[white] font-bold text-[18px]">
이벤트 홈으로 돌아가기
</p>
</Link>
</div>
</div>
</>
Expand Down

0 comments on commit bfe08ef

Please sign in to comment.