UNPKG
@lolpix/react-hashrouter
Version:
latest (0.0.2)
0.0.2
0.0.1
A fluent hash based router for React apps
github.com/lolPix/react-hashrouter
lolPix/react-hashrouter
@lolpix/react-hashrouter
/
Link.jsx
7 lines
(5 loc)
•
166 B
JSX
View Raw
1
2
3
4
5
6
7
import
React
from
'react'
;
import
{ normalizePath }
from
'./RouteUtil'
;
export
default
({ to, children }) => (
<
a
href
=
{
'#' +
normalizePath
(
to
)}>
{children}
</
a
>
);