import React from 'react'; import Modal from 'App/components/Modal/Modal'; import { observer } from 'mobx-react-lite'; import StepList, { Step } from './StepList'; import { useTranslation } from 'react-i18next'; export interface Props { list: Step[]; } function GettingStartedModal(props: Props) { const { t } = useTranslation(); const { list } = props; const pendingSteps = list.filter((step) => step.status === 'pending'); const completedSteps = list.filter( (step) => step.status === 'completed' || step.status === 'ignored', ); return ( <>
{t('Setup Openreplay')}

{t( 'Find all the ways in which OpenReplay can benefit you and your product.', )}

); } export default observer(GettingStartedModal);