/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. * * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ import React from 'react'; import { EuiCallOut, EuiLink } from '@elastic/eui'; import { APP_PATH, PLUGIN_NAME, BASE_DOCS_LINK, } from '../../../../utils/constants'; export const SampleDataCallout = () => { return (

Read the{' '} documentation {' '} or create a{' '} sample detector {' '} to get started.

); };