Skip to content

Commit

Permalink
Merge pull request #67 from boostcampwm-2024/fe/fix/file_name
Browse files Browse the repository at this point in the history
[FE/fix] 파일명 수정
  • Loading branch information
using2 authored Nov 19, 2024
2 parents bbc942a + d2b5187 commit 7a85d07
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions apps/frontend/src/pages/Lottery.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import LotteryTicket from '@/components/LotteryTicket';
import LotteryModal from '@/components/LotteryModal';
import LotteryButtons from '@/components/LotteryButtons';
import useLotteryModal from '@/hooks/UseLotteryModal';
import useLotteryCanvas from '@/hooks/UseLotteryCanvas';
import UseLotteryModal from '@/hooks/UseLotteryModal';
import UseLotteryCanvas from '@/hooks/UseLotteryCanvas';

const Lottery: React.FC = () => {
const { isModalOpen, openModal, handleCancel, handleConfirm } = useLotteryModal();
const { isModalOpen, openModal, handleCancel, handleConfirm } = UseLotteryModal();
const {
isCanvasVisible,
isScratching,
canvasRef,
resetLottery,
setIsCanvasVisible,
setIsScratching
} = useLotteryCanvas();
} = UseLotteryCanvas();

const canvasOpen = () => {
setIsCanvasVisible(true);
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7a85d07

Please sign in to comment.