'use client'; import React from 'react'; export interface MdStepProps extends React.HTMLAttributes { title: string; children: React.ReactNode; completedContent?: React.ReactNode; } export const MdStep: React.FunctionComponent = ({ children, ...otherProps }: MdStepProps) => { // Destructure the title and completedContent props from the otherProps object so that they are not included in the div's attributes const { title, completedContent, ...rest } = otherProps; return
{children}
; }; export default MdStep;