import styled from '@emotion/styled'; import space from 'sentry/styles/space'; import Body from './body'; import Header from './header'; type Props = React.ComponentProps; const SimilarTraceID = ({event, ...props}: Props) => { const traceID = event.contexts?.trace?.trace_id; return (
); }; export default SimilarTraceID; const Wrapper = styled('div')` display: grid; gap: ${space(2)}; `;