import React from "react"; import { useTranslation } from "react-i18next"; import { PreviousScene } from "../scene/types"; interface StoredScenesListProps { scenes: PreviousScene[]; currentId?: string; onChange: (selectedId: string) => {}; } export function StoredScenesList({ scenes, currentId, onChange, }: StoredScenesListProps) { const { t } = useTranslation(); return ( ); }