import React from 'react'; import { Typography } from 'antd'; import { OnboardingStep } from '../OnboardingStep'; export const INGESTION_CREATE_SOURCE_ID = 'ingestion-create-source'; export const INGESTION_REFRESH_SOURCES_ID = 'ingestion-refresh-sources'; export const IngestionOnboardingConfig: OnboardingStep[] = [ { id: INGESTION_CREATE_SOURCE_ID, selector: `#${INGESTION_CREATE_SOURCE_ID}`, title: 'Create a new Ingestion Source', content: (

Configure new Integrations from DataHub to your Data Platforms, including Transactional Databases like MySQL, Data Warehouses such as{' '} Snowflake, Dashboarding tools like Looker, and more!

Learn more about ingestion and view the full list of supported Integrations{' '} {' '} here.

), }, { id: INGESTION_REFRESH_SOURCES_ID, selector: `#${INGESTION_REFRESH_SOURCES_ID}`, title: 'Refresh Ingestion Pipelines', content: (

Click to force a refresh of running ingestion sources.

), }, ];