UNPKG
react-navbar-test
Version:
latest (0.1.0)
0.1.0
React Responsive Navbar Test Release
react-navbar-test
/
components
/
NavItem
/
index.js
11 lines
(8 loc)
•
215 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
"react"
;
import
{
Link
}
from
"react-router-dom"
;
const
NavItem
= props => (
<
li
className
=
"navitem"
>
<
Link
to
=
{props.to}
>
{props.children}
</
Link
>
</
li
>
);
export
default
NavItem
;