this is now
http://localhost:8001/components/button/
I want to
http://localhost:8001/components/button/?theme=dark
I used
browserHistory.push({
pathname: '',
query: {theme: dark},
})
and
browserHistory.push({
pathname: 'components/button',
query: {theme: dark},
})
and
browserHistory.push({
pathname: 'button',
query: {theme: dark},
})
All failed.
How can i do? Can you help me, thank you!
browserHistory.push("/components/button/?theme=dark")or trybrowserHistory.push({ pathname: 'components/button', search: '?theme: dark', })