/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; import { EuiPageHeader, EuiCallOut, EuiText, EuiLink, EuiPanel } from '@elastic/eui'; interface HeaderProps { children?: React.ReactNode; } export const Header = ({ children }: HeaderProps) => { return (

Compare results using the same search text with different queries. For more information, see the{' '} Compare Search Results Documentation . To leave feedback, visit{' '} forums.opensearch.com .

{children}
); };