import type { Component, JSX } from 'solid-js'; import { Show } from 'solid-js'; interface AgentStepSectionProps { step: string; title: string; description?: string; children: JSX.Element; } export const AgentStepSection: Component = (props) => { return (
{props.step.replace('Step ', '')}

{props.title}

{props.description}

{props.children}
); }; export default AgentStepSection;