import { React, useState } from "react";
import { menu } from "../data/data";
import {
IconCaretdown,
IconChevronRight,
IconShareStroked,
IconChevronUp,
IconChevronDown,
IconCheckboxTick,
} from "@douyinfe/semi-icons";
import { Link } from "react-router-dom";
import icon from "../assets/icon_dark_64.png";
import {
Avatar,
AvatarGroup,
Button,
Divider,
Dropdown,
Form,
} from "@douyinfe/semi-ui";
export default function ControlPanel() {
const [showToolBar, setShowToolBar] = useState(true);
return (
<>
{showToolBar && (
)}
}>
Header
}>
Overview
}>
Services
}>
Fullscreen
}
trigger="click"
>
Fit window
{[
"25%",
"50%",
"75%",
"100%",
"125%",
"150%",
"200%",
"300%",
].map((e, i) => (
{e}
))}
% }
/>
}
trigger="click"
>
zoom
Table
Note
Subject area
Text
}
trigger="click"
>
>
);
}