Pavel Ravits
Pavel Ravits
``` router.add({ name: 'register', pattern: '/register/:barcode?', page: '/register', }) ``` doing ``` router.replaceRoute('register', {}, { shallow: true }) ``` resulting in an address: ``` http://localhost:3000/register/ ``` Is it intentional ?...
getMatchingRoute to return { name, page, pattern } instead of { page, pattern } currently
Currently a lot of business logic, functionality and libraries being written as custom hooks using hooks api. Theoretically, would there be a way to use them with this framework? Of...
Cannot figure out why chart with react-vis differ so much from same chart with recharts. Why it is so wrong? And different curves didn't help... This is a price chart....
Hi, My application is embedded (not iframe), I want to render the popup-root under the application root. Another problem that I see is that popup-content has element styles which I...
Is it possible to update the address bar with the navigated file?
I wish this feature, like useUpdateEffect from react-use https://github.com/streamich/react-use/blob/master/src/useUpdateEffect.ts https://github.com/streamich/react-use/blob/master/src/useFirstMountState.ts
How to: ```sql SELECT * from X JOIN Y ON y.id1 = x.yid OR y.id2 = x.yid ``` Actually I can do this, right? ```gql type HitbtcPayment @model(table: "hitbtc_payments", pk:...