ComponentTogglesupports nesting features 2 levels deep. Meaning, you can group several features into one mega-feature, and configure them as one. They will also be chunked together as one file. Example, given the following folder structure: ...
- [x] Vanilla JS support - [x] Vanilla JS SSR - [x] Runes support - [ ] React support - [ ] Vue support - [ ] Solid support - [ ] Angular support ### Docs && DX - [ ] Typedoc - [ ] Examples for every framework - [ ] Examples with different styling solutions - [ ] Tai...
Go to the App.js file. We’re going to delete everything in there and add the layout for our app. Here’s what I did:import React from 'react'; import { ThemeProvider } from 'styled-components'; import { lightTheme, darkTheme } from './theme'; import { GlobalStyles } from './...
I don't get that question, sorry. What's the point of refetching stale data at a strategic point in time where the lib determines that now is a good time to trigger a refetch, like when an observer mounts or when an observer switches from disabled to enabled? That's what react-query...
Queries and actions are NodeJS functions that are executed on the server. Therefore, we put them in the `src/server` folder. ::: ## Invoking the query from React ## Invoking the Query on the frontend We've just said that the queries we write are executed on the server, but Wasp wil...