diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index 7cd00c8..7df9875 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -7,6 +7,7 @@ import AddTransactionButton from '@/components/AddTransactionButton'; import { Wallet, TrendingUp, Bell } from 'lucide-react'; import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs'; import { toast } from '@/components/ui/use-toast'; + const Index = () => { const [selectedTab, setSelectedTab] = useState("daily"); @@ -83,6 +84,7 @@ const Index = () => { description: `${type === 'daily' ? '일일' : type === 'weekly' ? '주간' : '월간'} 목표가 ${amount.toLocaleString()}원으로 설정되었습니다.` }); }; + return