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