import { Col } from 'antd'; import FullView from 'container/GridGraphLayout/Graph/FullView'; import React from 'react'; import { useParams } from 'react-router-dom'; import { Widgets } from 'types/api/dashboard/getAll'; import { Card, GraphContainer, GraphTitle, Row } from '../styles'; function External({ getWidget }: ExternalProps): JSX.Element { const { servicename } = useParams<{ servicename?: string }>(); const legend = '{{http_url}}'; return ( <> External Call Error Percentage External Call duration External Call RPS(by Address) External Call duration(by Address) ); } interface ExternalProps { getWidget: (query: Widgets['query']) => Widgets; } export default External;