import { For } from "solid-js"; import type { DeckStore } from "../hooks/deckStore"; export interface DataEditorPanelProps { activeTab: number; cards: DeckStore["state"]["cards"]; updateCardData: DeckStore["actions"]["updateCardData"]; } /** * 左侧:CSV 数据编辑面板 */ export function DataEditorPanel(props: DataEditorPanelProps) { return (