All Downloads are FREE. Search and download functionalities are using the official Maven repository.

plugins.SideBar.Menu.NavItems.Links.InnerLink.tsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import { NavLink } from 'react-router-dom'

import { Item } from '../../../../CommonMenuTypes'

import { LinkBody } from './LinkBody'

interface InnerLinkProps {
    href: string
    title?: string
    isMiniView: boolean
    sidebarOpen: boolean
    isStaticView: boolean
    showContent: boolean
    item: Item
    id: string
    forwardedRef?: React.Ref
}

export function InnerLink({
    href,
    isMiniView,
    sidebarOpen,
    isStaticView,
    showContent,
    item,
    id,
    forwardedRef,
}: InnerLinkProps) {
    return (
        
            
        
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy