import React from 'dom-chef'; export default function createDropdownItem(label: string, url: string, attributes?: Record): Element { return (
  • {label}
  • ); }