vike-react
vike-react copied to clipboard
🔨 React integration for Vike
 [vike-bloomify-2.zip](https://github.com/vikejs/vike-react/files/15334897/vike-bloomify-2.zip)
What do you think about this? Abstracting the creation of the context for the store, is tricky. The current implementation doesn't support multiple stores, but I think it's already useful....
Hi saw the open pull #57 🚀, I'm very interested in something similar for redux. But adding a full abstraction over redux seems a little overkill for my case (...
```jsx import { useDocument } from 'vike-react' function MyComponent() { const document = useDocument() document.title = 'Awesome Product' document.head.add( ) // ... } ``` It's particularly relevant when the data...
First of all, thank you for this great library! I'm creating this issue to share a hiccup I ran into. I'm using the Mantine-UI library and for the dark mode...
See: - https://github.com/vikejs/vike-solid/pull/74 - https://docs.solidjs.com/solid-start/reference/client/client-only I think we can & should also deprecate the `` wrapper component in favor of a `clientOnly()` function. It's a much nicer DX.
@nitedani Any blockers for doing that? Anything we should polish? We can have another round of design talk if you feel like it. Or maybe, more conservatively, we can publish...
I don't think Telefunc's [`getContext()`](https://telefunc.com/getContext) can be used with `vike-react-query`. How can we make it work? This is a blocker for implementing authentication. CC @nitedani
React has some [exciting developments in the pipeline](https://react.dev/blog/2024/02/15/react-labs-what-we-have-been-working-on-february-2024), which will be released in React 19 and are already available in the canary releases. We can already start experimenting with these...