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

plugins.Header.SimpleHeader.Menu.NavItems.Links.InnerLink.tsx Maven / Gradle / Ivy

The newest version!
import React, { ReactChildren } from 'react'
import { NavLink } from 'react-router-dom'
import { NavItem } from 'reactstrap'
import classNames from 'classnames'

export interface Link {
    children: ReactChildren | JSX.Element
    className?: string,
    active?: boolean,
    href: string,
    target: string
    style?: React.CSSProperties
}

export function InnerLink({ children, className, active, href, target, style }: Link) {
    return (
        
            
                {children}
            
        
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy