Hi Guys,
I'm using react-router-dom as my router.
What I wanted to achieve is to make a Button that functions as NavLink. Is there a way to do this? Thanks!
Here's my code:
<Button look="flat">Sign out</Button>
<NavLink to='/signout' look="flat" component={Button}>Sign out</NavLink>
I think for this case, i just have to use kendo-ui css
<NavLink to='/signout' className='k-button k-flat'>Sign out</NavLink>