type Props = { list: React.ReactNode[]; }; export function ControlMenu({ list }: Props) { return ( {list.map((control, i) => ( // re-render does not change the order // eslint-disable-next-line react/no-array-index-key
  • {control}
  • ))}
    ); }