plugins.SideBar.Menu.NavItems.Links.OuterLink.tsx Maven / Gradle / Ivy
The newest version!
import React from 'react'
import { Item } from '../../../../CommonMenuTypes'
import { LinkBody } from './LinkBody'
interface OuterLinkProps {
href: string
title?: string
isStaticView: boolean
showContent: boolean
sidebarOpen: boolean
isMiniView: boolean
item: Item
id: string
forwardedRef?: React.Ref
}
export function OuterLink({ href, isStaticView, showContent, sidebarOpen, isMiniView, item, id, forwardedRef }: OuterLinkProps) {
return (
)
}