import { Title, SubTitle } from '@automattic/onboarding'; import type { PropsWithChildren } from 'react'; type Props = PropsWithChildren< { title?: string; subtitle?: string; } >; export default function StepContent( { title, subtitle, children }: Props ) { return ( <>
{ title && { title } } { subtitle && { subtitle } }
{ children }
); }