This is the import of the icons
import { HiAnnotation, HiCog, HiColorSwatch } from "react-icons/hi";
This is the array with all the objects
const quickMenu = [
{ title: "Users", path: "/path", img: /hero icon/ },
{ title: "Products", path: "/products", img: /hero icon/ },
{ title: "Transactions", path: "/transactions", img: /hero icon/ },
{ title: "Reports", path: "/reports", img: /hero icon/ },
];
and this is where I want to render the array
<ol className="flex flex-col text-white">
/Here/
</ol>
thank you in advance