fix: move card component to product_cards components

This commit is contained in:
2026-01-22 12:09:08 -05:00
parent 30c86992e1
commit c55e601d51
5 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,2 @@
export * from './card/';
export * from './product_cards/'; export * from './product_cards/';
export * from './index'; export * from './index';

View File

@@ -1,4 +1,4 @@
import Card from '../card/card.tsx'; import Card from './components/card/card.tsx';
import type { Product } from '../../../../types.ts' import type { Product } from '../../../../types.ts'
type ProductCardProps = { type ProductCardProps = {

View File

@@ -0,0 +1 @@
export * from './card/'