import React from 'react'; // Where you are in a dialog of steps: done steps get a tick, the current one is // marked for assistive technology as well as by colour. `current` is 1-based. export default function Steps({steps, current}) { return (
    {steps.map((label, index) => { const number = index + 1; const state = number < current ? 'done' : number === current ? 'current' : 'todo'; return (
  1. {state === 'done' ?