http://example.com/#message=hello
--------------
mapping to object
{
message: 'hello'
}bind to Component state
function MyComp() {
const [state] = useURLHash()
return (
<div>message: {state.message}</div>
)
}| Name | Name | Last commit date | ||
|---|---|---|---|---|
http://example.com/#message=hello
--------------
mapping to object
{
message: 'hello'
}bind to Component state
function MyComp() {
const [state] = useURLHash()
return (
<div>message: {state.message}</div>
)
}