UNPKG

@localazy/strapi-plugin

Version:

The official Strapi Plugin by Localazy.

12 lines (11 loc) 245 B
/// <reference types="react" /> export type NavItem = { id: string; label: string; description: string; icon: React.ReactNode; to: string; active: boolean; }; declare const useNav: () => NavItem[]; export default useNav;