/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; import ReactTooltip, { Place, Type, Effect, Offset, GetContent } from "react-tooltip"; interface Props { id: string; uuid?: string; place?: Place; type?: Type; effect?: Effect; offset?: Offset; getContent?: GetContent; clickable?: boolean; } function Tooltip(props: Props) { return ( ); } export default Tooltip;