feat(evolver): Evolver 페이지 + LottoActivityTimeline + EvolverActions + 라우터

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-23 02:19:07 +09:00
parent b99d720179
commit 2543dc335d
5 changed files with 266 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ import {
const Home = lazy(() => import('./pages/home/Home'));
const Blog = lazy(() => import('./pages/blog/Blog'));
const Lotto = lazy(() => import('./pages/lotto/Lotto'));
const Evolver = lazy(() => import('./pages/lotto/Evolver'));
const Travel = lazy(() => import('./pages/travel/Travel'));
const Stock = lazy(() => import('./pages/stock/Stock'));
const StockTrade = lazy(() => import('./pages/stock/StockTrade'));
@@ -153,6 +154,10 @@ export const appRoutes = [
path: 'lotto',
element: <Lotto />,
},
{
path: 'lotto/evolver',
element: <Evolver />,
},
{
path: 'stock',
element: <Stock />,