import type { FrameType } from "../../lib/schemas"; export default function Frame({ frame } : { frame: FrameType }) { return (

{frame.title}

{frame.title}
    {frame.steps.map((step, stepIndex) => (
  1. {stepIndex + 1}.{step.text}
  2. ))}
); }