We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 66fcecf + 9369bb1 commit 977af13Copy full SHA for 977af13
src/pods/card/card.pod.tsx
@@ -2,7 +2,7 @@ import React from 'react';
2
import { useParams } from '@tanstack/react-router';
3
import { CardComponent } from './card-component';
4
5
-export const DeckPod: React.FC = () => {
+export const CardPod: React.FC = () => {
6
const { deckId } = useParams({ strict: false });
7
8
return (
src/scenes/_auth/dashboard/card/$deckId/index.tsx
@@ -1,6 +1,6 @@
1
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