import React from "react"; import copy from "copy-to-clipboard"; import toast from "react-hot-toast"; import styles from "./index.scoped.less"; interface IProps { entryKeys: string[]; currentEntryKey?: string; onChange?: (newKey: string) => void; loadOpts: any; } const DemoList: React.FC = ({ entryKeys, currentEntryKey, onChange, loadOpts, }) => { return ( ); }; export default DemoList;