import { Show } from 'solid-js'; import { CardPreview } from './CardPreview'; import type { DeckStore } from './hooks/deckStore'; export interface DeckContentProps { store: DeckStore; isLoading: boolean; } /** * 卡牌预览内容区域:错误/加载/卡牌预览/空状态 */ export function DeckContent(props: DeckContentProps) { return ( <> {/* 错误提示 */} {props.store.state.error} {/* 加载状态 */} 加载卡牌数据中... {/* 卡牌预览 */} 0 && !props.store.state.error}> {/* 空状态 */} 暂无卡牌数据 > ); }