// Copyright (C) 2020 Intel Corporation // // SPDX-License-Identifier: MIT import React from 'react'; import { Col, Icon, Select, Button, } from 'antd'; import { Workspace } from 'reducers/interfaces'; import { InfoIcon, FullscreenIcon } from '../../../icons'; interface Props { workspace: Workspace; showStatistics(): void; changeWorkspace(workspace: Workspace): void; } function RightGroup(props: Props): JSX.Element { const { showStatistics, changeWorkspace, workspace } = props; return (