simplify tools imports

This commit is contained in:
Gavin McDonald
2025-07-04 14:18:38 -04:00
parent c6e316a1f8
commit b4b0c853f1
14 changed files with 29 additions and 26 deletions

View File

@@ -6,8 +6,7 @@ import TiltCard from '@/components/TiltCard';
import ToolTip from '@/components/ToolTip';
import StackTheDeck from '@/components/StackTheDeck';
import Sheen from '@/components/Sheen';
import getCardInfo from '@/tools/getCardInfo';
import getURL from '@/tools/getURL';
import { getCardInfo, getURL } from '@/tools';
import tarokkaCards from '@/constants/tarokkaCards';
import { layout } from '@/constants/tarokka';

View File

@@ -3,7 +3,7 @@
import { CircleX } from 'lucide-react';
import { useAppContext } from '@/app/AppContext';
import TarokkaDeck from '@/lib/TarokkaDeck';
import getURL from '@/tools/getURL';
import { getURL } from '@/tools';
import { Deck } from '@/types';

View File

@@ -6,7 +6,7 @@ import { CircleX, ScrollText } from 'lucide-react';
import { useAppContext } from '@/app/AppContext';
import CopyButton from '@/components/CopyButton';
import Scrim from '@/components/Scrim';
import getCardInfo from '@/tools/getCardInfo';
import { getCardInfo } from '@/tools';
import { cardMap, layout } from '@/constants/tarokka';
export default function Notes() {