import { Action, ObjectType } from "../../../data/constants";
import { Input, Button, Popover, Checkbox, Select } from "@douyinfe/semi-ui";
import { IconMore, IconDeleteStroked } from "@douyinfe/semi-icons";
import { useTables, useUndoRedo } from "../../../hooks";
export default function IndexDetails({ data, fields, iid, tid }) {
const { tables, updateTable } = useTables();
const { setUndoStack, setRedoStack } = useUndoRedo();
return (
}
trigger="click"
position="rightTop"
showArrow
>
}
type="tertiary"
style={{ marginLeft: "12px" }}
/>
);
}