| 18 | } |
| 19 | |
| 20 | interface StepsProps { |
| 21 | children: React.ReactNode; |
| 22 | } |
| 23 | |
| 24 | export default function Steps({ children }: StepsProps) { |
| 25 | return <div className="steps-container">{children}</div>; |
nothing calls this directly
no outgoing calls
no test coverage detected