import React from 'react'; import StepList, { Step } from './StepList'; import Modal from 'App/components/Modal/Modal'; import CircleProgress from './CircleProgress'; import GettingStartedProgress from './GettingStartedProgress'; import { observer } from 'mobx-react-lite'; export interface Props { list: Step[]; } function GettingStartedModal(props: Props) { const { list } = props; const pendingSteps = list.filter((step) => step.status === 'pending'); const completedSteps = list.filter( (step) => step.status === 'completed' || step.status === 'ignored' ); return ( <> Setup Openreplay Find all the ways in which OpenReplay can benefit you and your product. > ); } export default observer(GettingStartedModal);
Find all the ways in which OpenReplay can benefit you and your product.