We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9835367 commit 9369bb1Copy full SHA for 9369bb1
src/pods/card/card.pod.tsx
@@ -1,7 +1,7 @@
1
import React from 'react';
2
import { useParams } from '@tanstack/react-router';
3
4
-export const DeckPod: React.FC = () => {
+export const CardPod: React.FC = () => {
5
const { deckId } = useParams({ strict: false });
6
7
return <h1>Card component {deckId}</h1>
src/scenes/_auth/dashboard/card/$deckId/index.tsx
@@ -1,6 +1,6 @@
import { createFileRoute } from '@tanstack/react-router';
-import { DeckPod } from '#pods/card/index.ts';
+import { CardPod } from '#pods/card/index.ts';
export const Route = createFileRoute('/_auth/dashboard/card/$deckId/')({
- component: DeckPod,
+ component: CardPod,
})
0 commit comments