NextJS + State Management = Good Idea???

  Рет қаралды 102,876

Jack Herrington

Jack Herrington

Күн бұрын

Пікірлер: 229
@demiann4160
@demiann4160 2 жыл бұрын
A 10/10 for the quality and creativity in making something unique and so valuable for all of us
@jacobphillips9235
@jacobphillips9235 8 ай бұрын
Thanks!
@thegrumpydeveloper
@thegrumpydeveloper 2 жыл бұрын
React hook form is my go to state management no joke. Form fields are the most complex state and have so many hidden states like validity, submitting,submitted etc. It’s important to choose a form library if you’re taking any user input beyond button clicks.
@nuitech2190
@nuitech2190 2 жыл бұрын
Great, I will check that out. I have a massive form (5 - 7 tab pages) using Formik + Yup. It get really slow when I typing in input box. The whole pages get rerender every keystrokes. I hope React hook form will help.
@kadirit
@kadirit 2 жыл бұрын
@@nuitech2190 it will because rhf uses refs for form state out of the box, causing no re-renders
@garrettdarnell7048
@garrettdarnell7048 2 жыл бұрын
I'm finally getting into React after being an Angular dev for years, this was really helpful. Loved seeing the RxJS content in there, it helps me connect my old mental model of reactivity with the new.
@mooshy5944
@mooshy5944 2 жыл бұрын
Was hoping you would go into a flow such as “action” => “state update” => “getServerSideProps” => “Client Hydration & render”. I think what makes nextjs more convoluted when it comes to state management is that you can also treat query parameters as state, which in return continues the SSR even when a person for example goes to “/pokemon?page=2”
@mattl7599
@mattl7599 Жыл бұрын
Would like to see this also!
@ashish_prajapati_tr
@ashish_prajapati_tr 2 жыл бұрын
your solutions are so bullet proof. i was struggling for how to setup redux in server with data fetching in nexjs ssr. i found it so much helpful. Thanks a lot.
@kodoku2377
@kodoku2377 2 жыл бұрын
I've always liked this state library called "easy-peasy" which is a very simplified version of redux and uses it under the hood, so you can use most redux features with it. Even redux devtools and it's compatible with React Native
@nishadvadgama
@nishadvadgama 4 ай бұрын
Thanks a ton. I wanted to use zustand store in RSC to basically feed in state in SSR and then hydrate it in CSR to manipulate that store, after watching your video I can now.
@tuRistst
@tuRistst 2 жыл бұрын
Thx for videos. Don't lost a motivation to create content. We love your lessons and respect your work! Ps: special thanks for the work with nextjs
@silenux7419
@silenux7419 2 жыл бұрын
Hello Jack. Loving the typescript implementation in your videos. I think that should be the standard for all JS videos. The type safety and security of what you are doing that TS brings is great for learning.
@krisnarusdiono1304
@krisnarusdiono1304 2 жыл бұрын
sir you are my mentor now, thank you for your videos!
@markilabot14
@markilabot14 2 жыл бұрын
Jack has a high level understanding of his stack and technologies, which leads to a high quality and greatness of his video. Thanks a lot.
@albaraa-bin-malek
@albaraa-bin-malek Жыл бұрын
Your recommendation at the very end is great. Made my realize so much. Thank you for the thorough video.
@fernandobaroni1497
@fernandobaroni1497 2 жыл бұрын
Great content! TIL about Jotai, I'm loving it!! Also I'm really liking this 'Operator Mono' font!
@tuananhdo1870
@tuananhdo1870 2 жыл бұрын
[Copy] Thank to you, I know about Zustand. Such an amazing library. Now state management is very simple and I can even access the store outside a component. SO COOL.
@trenthm
@trenthm 2 жыл бұрын
Fantastic. We don’t deserve videos this comprehensive and well done! Learned a ton
@ThEldeRS
@ThEldeRS 2 жыл бұрын
I would've watched this video even if it was hours long, it was so instructive and well made! Thank you for your hard work producing these wonderful videos, Jack!
@leumasrodama2010
@leumasrodama2010 2 жыл бұрын
It takes a lot of work to have a tuts like this., Keep up the good work. Just subscribed., :)
@alfawal
@alfawal 2 жыл бұрын
Tbh, I would like to thank you a lot, your content always amazes me, knowing what each exactly does and how to use it solves my decision issues. Never subscribed or commented on any channel but you deserve support.
@wardxela
@wardxela Жыл бұрын
Awesome comparison video, I like it. Thanks for you content. But I want to leave a note regarding Zustand implementation. There is actually a little bug that is related to hydration. Let me explain the problem. 1. When you open the page, getServerSideProps gets called and it saves data to the store and passes it as a prop to our page. 2. Then our page component gets rendered on the server and it receives data from the store, not from useEffect (since it is ignored on the server side). Therefore we implemented SSR. 3. Finally, we render our page on the client. Here is where the problem comes in. First we are trying to get the data from the store and of course there is nothing for now because server side store has nothing common with client side one. So our page renders nothing and we receive a hydration error. Then in useEffect we simply fill the data from the prop causing our page component to rerender, showing us a list of pokemon. It might look that everything is working but hydration requires us to create exact same html on the client that we received from the server on the first render. Possible dumb implementation to fix this might look like this: (filteredPokemon.length === 0 ? pokemon : filteredPokemon).slice(0, 20).map(() => ) A better way to do it is to simply replace filteredPokemon with null in the store when it is first created. P.S. I noticed that the same issue also related to Mobx and RxJS implementations.
@ryanle4059
@ryanle4059 2 жыл бұрын
Thank to you, I know about Zustand. Such an amazing library. Now state management is very simple and I can even access the store outside a component. SO COOL.
@shift-happens
@shift-happens 2 жыл бұрын
very nice video, thanks a lot for this overview! With NextJS, I exclusively use useState and useContext to deal with state and I was always wondering why state management libraries seem to be so important to many others.
@gugunm
@gugunm Жыл бұрын
really love the way you explain, Jack
@affas_r
@affas_r 2 жыл бұрын
Exactly what I was looking for. Great video. Thanks a lot.
@jasonma1904
@jasonma1904 2 жыл бұрын
This video explained so well. Nice work and efforts! love it.
@shahrzadgheidi6229
@shahrzadgheidi6229 2 жыл бұрын
Perfect.. Thank you so much. this was such an amazing wrap up.
@robertweeden9156
@robertweeden9156 2 жыл бұрын
Jack your videos are truly too tier content. Not many content creators actually deserve a like + subscribe but your teaching style and explanations are well worth it! Keep making great stuff!
@alexsuarez667
@alexsuarez667 2 жыл бұрын
As usual Jack! Excellent video! Keep rocking
@JasonChannelOne
@JasonChannelOne 2 жыл бұрын
Such a helpful video! Thank you 🙏 Do you have any thoughts on ORMs and databases? A video like this for both would be great!
@matkomilic8382
@matkomilic8382 2 жыл бұрын
Beautiful. Creating something that will live on. These videos are special and Im happy for younger upcoming generations for having such videos ready for them. Very enjoyable videos.
@matkomilic8382
@matkomilic8382 2 жыл бұрын
And I love how at the end "My Recommendations" is added, thats also super important.
@ThomasBurleson
@ThomasBurleson 2 жыл бұрын
I am very impressed with the bandwidth of solutions that you have presented. Extremely useful to think about server-side renderings + data fetch along with client-side state management. Excellent video. Make a donation page and I will donate to say thank you!
@tomino133
@tomino133 2 жыл бұрын
Another great video. Huge thumbs up!
@dyunior
@dyunior 2 жыл бұрын
Dang!! just watch few minutes, but this one is saved and bookmarked for later's playlist.
@byc090020
@byc090020 2 жыл бұрын
Thanks for all your work to educate us!
@llvae
@llvae Жыл бұрын
This was really helpful, thank you.
@gemanepa5455
@gemanepa5455 Жыл бұрын
You're doing god's work here man. Thanks
@ddomingo
@ddomingo 2 жыл бұрын
This video is gold! Thank you sir.
@milozommer1557
@milozommer1557 2 жыл бұрын
I love your videos man. Haven't watched this one yet but I'm sure it's gonna be an awesome video. I wanted to ask you if you have/could make a video talking about React query and state management, when is it necessary to add a state manager using RQ, different use cases, etc
@sergioccarneiro
@sergioccarneiro 2 жыл бұрын
Very helpful comparisons, thank you! 🙏 More can be researched though, and I look forward to see your follow-up on this. Would suggest handling 1000 Pokemon next to add infinite scrolling and pagination 👌
@jimjoseph554
@jimjoseph554 4 ай бұрын
This is good, thanks for this video. Was really helpful.
@badasspresso
@badasspresso 2 жыл бұрын
God bless people like you! So much effort, so many examples, so accurate… Thank you!!!
@yuriiholskyi9009
@yuriiholskyi9009 4 ай бұрын
Amazing video, thank you so much.
@AtizaJuanita
@AtizaJuanita 2 жыл бұрын
Love this video! One tiny recommendation though, I'd write lists of things in plural. In this video pokemon array should be named pokemons
@chizidotdev
@chizidotdev 2 жыл бұрын
This has got to be my most rewatched KZbin video of 2022…
@dgcp354
@dgcp354 2 жыл бұрын
After I saw your vid on state management I started using zustand with react query and never looked back. bus never used next yet.
@jherr
@jherr 2 жыл бұрын
FWIW, I'm using Zustand in my current project and I'm lovin' it. So easy and reliable.
@hugodsa89
@hugodsa89 2 жыл бұрын
@@jherr I personally fell in love with Jotai in this video composing/piping state that is reactive but also you get to reuse the filter functions and so is actually mind blowing.
@davidentzat5671
@davidentzat5671 2 жыл бұрын
Excellent video as always!!! If you are not tired of this subject I would love to see a (perhaps simplified) version for the Remix framwork! 🙂 Thanks in any case 🙇‍♂️
@raygan3
@raygan3 2 жыл бұрын
How do you do this magic thing with auto wrapping a component. For example in 18:02 you are pasting queryclient probider, the closing tag is before but when you hit save it magically auto wraps component with your query client. Is it some extension or a shortcut?
@jherr
@jherr 2 жыл бұрын
That's just a rough edit. I just pulled out the section where I moved the tag around. If you find and extension like that, lemme know! Hahahah.
@jose6183
@jose6183 2 жыл бұрын
Incredible timing!
@alexchud
@alexchud 2 жыл бұрын
All of your videos are great and are appreciated, just a point though the zustand example would introduce cross-request state pollution… as you are not creating a new instance of the store for every SSR request.. as a result the store is shared for all requests coming in via SSR
@jherr
@jherr 2 жыл бұрын
Yes, that is a possibility. But isn't that the case with any singleton store?
@alexchud
@alexchud 2 жыл бұрын
@@jherr yes that’s true :-), the trick is to check if it’s ssr then you would create a new instance of the store every time and if it’s hydrated on the client you would just return the singleton 😅
@jherr
@jherr 2 жыл бұрын
@@alexchud You can clean the state pretty easily by doing `useStore.set(initialState);`, and you could to that in the middleware to make sure you catch everywhere
@alexchud
@alexchud 2 жыл бұрын
@@jherr would that clear the state quick enough if you would have 100 requests coming in at the same time.. I am not sure 🤔🤷‍♀️
@jherr
@jherr 2 жыл бұрын
@@alexchud Node is single-threaded.
@bartgrundeken1428
@bartgrundeken1428 2 жыл бұрын
Great video. I like your style, very enthusiastic, balanced view, great! I use Zustand in a CRA project right now, works great. Btw...looking forward to more Remix stuff, if you have it in the pipeline ;)
@rajikkali2381
@rajikkali2381 Жыл бұрын
You deserve WAY more subscribers
@hugodsa89
@hugodsa89 2 жыл бұрын
Jack, just thank you 🙏🏻 really great video. This is just splendid.
@cra2yjoker
@cra2yjoker 2 жыл бұрын
12:07 wow.. how did you do that? Nest the pokemon component into PokemonProvider that quickly?
@jherr
@jherr 2 жыл бұрын
Sorry, that's just an edit. :( If you find something that does work that quickly please let me know.
@thorjuberaalbo
@thorjuberaalbo 2 жыл бұрын
Amazing your videos and explanations, I learned so much with this one and the one of 20 state manager. In that one you say externalize the business logic can you make a video explaining that concept? Thank you so much
@joshuastories
@joshuastories 2 жыл бұрын
Free content. Free like. Thank you for invaluable content. (Within scope of content) thank you for promoting internet health and developer prosperity. That’s priceless in my opinion.
@Fitzpa14
@Fitzpa14 2 жыл бұрын
How are you able to set the zustand state on the server at 28:45 ? Isn't Zustand only on the client? I'm surprised this isn't causing hydration issues.
@jherr
@jherr 2 жыл бұрын
Zustand works on the server too. You just do `[zustandHook].setState` to fully initialize its state.
@MrKeepItTrill
@MrKeepItTrill 2 жыл бұрын
The Zustand pronounciation is getting better with every video :)
@jherr
@jherr 2 жыл бұрын
Hahahaha. Thanks.
@fullstack_journey
@fullstack_journey 2 жыл бұрын
Since NextJS 13 is out... how to do global client side state management now using the app/layout.js file, as i've understood it pre-renders it on the server, will that cause any issues if i put my context providers in there, or what is the better approach to follow for this problem?
@jherr
@jherr Жыл бұрын
If you put your context provider at the layout level then none of your components will be RSCs.
@abdurrahmanabu-hijleh6963
@abdurrahmanabu-hijleh6963 2 жыл бұрын
I'm planning to watch this later. What are your thoughts on Vercel's own data fetching library SWR?
@jherr
@jherr 2 жыл бұрын
I think I should have covered it as well. Hahahaha.
@shaqvinluan8455
@shaqvinluan8455 10 ай бұрын
do you have a content about what vs code extensions do you use? what extension you use to change the font style?
@ProgrammingOnly
@ProgrammingOnly 10 ай бұрын
tysm sir, really appreciate it!
@saramshshrestha7641
@saramshshrestha7641 2 жыл бұрын
Love your videos. Next time i will definitely try jotai or zustard.
@claus4tw
@claus4tw 2 жыл бұрын
If I get this right I could also store the json in a singleton and pull that in. This gets a lot more complicated with multiple queries where I would opt into react-query. But I still don’t see the case for a statemanager like Zustand. Wouldn’t that make only sense when we want to use for example the filtered list in a different route?
@spongebob93lover
@spongebob93lover Жыл бұрын
would love to see a SWR example too
@MdARahim
@MdARahim 2 жыл бұрын
Wow, you deserve more subscriber. I'm glad that I saw your video on Brad traversy's channel and click on your channel link. One question, how do you grasp different technology so quickly and so elegantly? I wish I was that fast.
@adimaralimuddin96
@adimaralimuddin96 2 жыл бұрын
just look at that zustand! i really loved it. i actually replaced redux and context eversince zustand came.
@jonathanarturo
@jonathanarturo 2 жыл бұрын
What are your toughts using SWR + somestate management? Reasoning behind is the next team (Vercel) recommend it for data fetching on client side, would it make more sense to use just react query?
@spongebob93lover
@spongebob93lover Жыл бұрын
i am very curious on that as well, what do you think after 1 year?
@michaelcasas167
@michaelcasas167 2 жыл бұрын
what endpoint do you get the images for the pokemon from? they look great!
@jherr
@jherr 2 жыл бұрын
It's this repository github.com/jherr/pokemon deployed to an S3 bucket.
@codezero6023
@codezero6023 2 жыл бұрын
For useMemo, If you have a big list, would that use up a bit a memory for each list permutation being memoed ?
@jherr
@jherr 2 жыл бұрын
useMemo is only one layer deep.
@aryan_karim
@aryan_karim 2 жыл бұрын
For the Redux part, the first render on the client side won't display any pokemon. This causes of generating different DOM trees in server vs client. I tried it and even saw a warning that says content mismatch. How can we avoid this?
@jherr
@jherr 2 жыл бұрын
I haven't seen that. If you like you can post a github or stackblitz link on my Discord server in the #react channel and folks can have a look.
@aryan_karim
@aryan_karim 2 жыл бұрын
@@jherr ​ I cloned the with-redux repo, and this warning appeared on the console. Warning: Did not expect server HTML to contain a in . Which means that the first render on the client side doesn't contain any pokemon. And I'm not yet sure if that has any drawbacks regarding SEO.
@TicBox
@TicBox 2 жыл бұрын
kzbin.info/www/bejne/mKHFfaRsg918o5o
@johnyg8806
@johnyg8806 2 жыл бұрын
This is pure gold
@maksym7279
@maksym7279 2 жыл бұрын
Great! Thanks!
@heguer87
@heguer87 2 жыл бұрын
you are always so great, thank you so much for explaining this. Seems simple but when we don't know we just don't know lol.
@jampy42
@jampy42 2 жыл бұрын
Great video, but there is a way to get initial info from api only 1 time instead of each page? like a global state that's been set in server side, and that can also be updated when you build the app, and so that i can access from any component in my app
@odev6764
@odev6764 2 жыл бұрын
I had nice insight watching your video, pretty cool.. I have doubt about context api, or if there is another way to do on nextjs, how can I have data fetched once when user enter on site and share this data though multiple pages? for instance if I would like to fetch menus from backend. I noticed you used context on _app but getServerSideProps need to be imported in each page where data was need. I ask this because I don't found any way without disabling Automatic Static Optimization. If I use getInitialProps it will disable it. Do you know any other way to do that?
@sultannasyrov4662
@sultannasyrov4662 2 жыл бұрын
I've got a questing on mobx example. Whats the point of using store in getServerSideProps and populating it with pokemons if you put them(pokemons) again in useEffect function on the client side?
@aminedaimallah310
@aminedaimallah310 2 жыл бұрын
nice, i was looking for this video, i was wondering too, do we need state management for nextjs, thanks a lot
@frankli7035
@frankli7035 2 жыл бұрын
Amazing, your videos is way above other's 'tutorial' ....Just one quick question if I didn't use on app level of these state datas, how could I use the context store, or it's a bad idea to do so?
@PRonYouTube
@PRonYouTube 2 жыл бұрын
Loved the video. Watched through all of it? Is your zsh config up on github? Looks nice!
@hundehausen
@hundehausen 2 жыл бұрын
What is that folder suggestion in iTerm2? Looks nice
@jherr
@jherr 2 жыл бұрын
Fig
@hundehausen
@hundehausen 2 жыл бұрын
Fig already changed my life :D thank you
@jggabayno
@jggabayno 2 жыл бұрын
question. how should I apply the hydration like that when I'm using createReducer with builder?
@jherr
@jherr 2 жыл бұрын
With 'builder'? What is that?
@jggabayno
@jggabayno 2 жыл бұрын
@@jherr a Action Reducer Map Builder in the second parameter of createReducer function
@jherr
@jherr 2 жыл бұрын
@@jggabayno This is probably best handled over on my Discord server: discord.gg/BCq9PZaW Please ask your question there in the #react channel, but be sure to follow the #rules. In this case any relevant small code fragments (not pasted as images), or any documentation URLs you could provide would help you get a better answer.
@xtinctspecies
@xtinctspecies 2 жыл бұрын
Hi Jack! This was a great video. I have had the hardest time wrapping my head around making a gql api work with nextjs. Hydrating / rehydrating Apollo cache has been a difficult thing to master
@jherr
@jherr 2 жыл бұрын
I may take a look at that.
@AbdelhameedG
@AbdelhameedG 2 жыл бұрын
Great tutorial as usual Jack , I'm in the use-context part 13:11 you say if you add more pages you have to use the same "getServerSideProps" , my question is , in that case , why not use "getInitialProps" in _app instead of calling "getServerSideProps" in every page ?
@AbdelhameedG
@AbdelhameedG 2 жыл бұрын
Redux looks so ugly next to all these easier alternatives, I just started a new application at work using next.js and used redux to manage authentication state ( I save user JWT token as a cookie, use it on the server -getInitalProps- to fetch user data and populate redux state with authentication state and it was challenging to make this work ) but now I'm thinking of removing redux completely and going for something else
@AbdelhameedG
@AbdelhameedG 2 жыл бұрын
Jack seriously you are Amazing , Thank you for this very high quality tutorials you offer us for free! Thank you sir.
@codezero6023
@codezero6023 2 жыл бұрын
I love the summary about state managers - use nothing ! I prefer my own singleton services with update methods and a subscription function.
@CV0602
@CV0602 2 жыл бұрын
Jack, can you make a video about react tables with typescript?
@syedhaider0916
@syedhaider0916 Жыл бұрын
Thank you so much for such quality content. No wonder why this channel is exploding.
@ricardoolartepuell2011
@ricardoolartepuell2011 2 жыл бұрын
Great vídeo! I'm now trying to decide between jotai, zustand or recoil for a growing proyect! On the other hand, how You config Your iterm2 like that!!?
@jherr
@jherr 2 жыл бұрын
gist.github.com/jherr/cb8770e2ae92a7646d22c126be896a72
@codernerd7076
@codernerd7076 2 жыл бұрын
Love the video editing and the topic!
@LuisLopezCool
@LuisLopezCool Жыл бұрын
Hey man! amazing work. I wondering what is your zsh theme?
@jherr
@jherr Жыл бұрын
oh-my-posh with the atomic theme. font is JetBrainsMono NF.
@LuisLopezCool
@LuisLopezCool Жыл бұрын
@@jherr thanks
@100timezcooler
@100timezcooler 2 жыл бұрын
considering a scenario where i need a good sync beetween client and server for operations other than read (mainly update and delete) are all these solutions still good or should i only consider some of them (maybe based on the directionality model)?
@jamesclark4850
@jamesclark4850 Жыл бұрын
The code in the redux repo is different from that you discuss in the video? You don't use define or use the rehydrate function. Did you change your thinking?
@jherr
@jherr Жыл бұрын
If it's updated in the repo then that means I was corrected by someone who knows better than me so we fixed it. :)
@mukleshossen751
@mukleshossen751 2 жыл бұрын
sir please make video on how to use rtk query with nextJs
@malikmusa203
@malikmusa203 2 жыл бұрын
I'm a big fan of you, Because of security reasons for JWT Token please make a video on the refresh token in NextJs. I'll thankful to you
@bepd
@bepd 2 жыл бұрын
Do you have any suggestions for learning how these libraries work? It all seems a bit like magic to me still.
@jherr
@jherr 2 жыл бұрын
When you say "how do they work", are you interested in how you would use them? Or how you'd actually construct one? I've done a bunch of videos on how to use them, but I don't think I've ever done one on how to make a state manager.
@denilsoncosta9837
@denilsoncosta9837 2 жыл бұрын
this video answers so many questions that i had, thank for the lesson. I have one question. If i use axios to make a request on get server side props, and i get an error but i intercept using (axios intercept) and made another request. Would the it fail or wait for the second request to complete?
@learninglane24
@learninglane24 2 жыл бұрын
Could you please make a video on handling searching/filtering (across the entire set of items) incase of using SSR in nextJS with pagination of say hundreds of items.
@amarg26
@amarg26 2 жыл бұрын
Context and react query can be useful as state management?
@jherr
@jherr 2 жыл бұрын
RQ can handle data storage, you'd need some extra state to manage the interactive stuff. And yes, context can handle all of it.
@amarg26
@amarg26 2 жыл бұрын
@@jherr what we can use to handle for the extra state?
@jherr
@jherr 2 жыл бұрын
@@amarg26 useState? useReducer?
@george_bullock
@george_bullock 2 жыл бұрын
Jack, this video was great. I love your content. You're the "senior" dev / mentor I wish I had at work 😄. Please keep up the good work. And thank you! 🙏🏾. Let me know if there are other ways to support you besides liking and subscribing; I'm open to that.
@agengo1
@agengo1 2 жыл бұрын
Thanks for such an outstanding video. What if I want to use multiple providers for Context state management can the reducers be combined how can it be done?
@jherr
@jherr 2 жыл бұрын
Feel free to ask that question on my Discord server in the #react channel.
@Alba-ig9hy
@Alba-ig9hy 2 жыл бұрын
Can you see the redux state on the redux dev tools pannel with this approach? I got it working but I can't see the actions take place in the dev tools
@jherr
@jherr 2 жыл бұрын
You should see the initial state coming out of SSR in the redux devtools. But I don't think you would see any actions/states that happened BEFORE the code runs on the client. So any actions/states during SSR would _probably_ not show up without additional work on your part.
@Alba-ig9hy
@Alba-ig9hy 2 жыл бұрын
I didn't think of that. But ok, what I dispatch in getServerSideProps doesn't show, fine. But if I add a button and on click I'm envoking a dispatch isn't that happening AFTER the code has run in the client? I have this on a button onClick={() => dispatch(addTodo({name: "The Something", id: 506}))} It works but doesn't show show in dev tools, but isn't it happening AFTER
@jherr
@jherr 2 жыл бұрын
@@Alba-ig9hy If what you are dispatching to is a Redux store and you have set up the Redux store with whatever the Redux devtools integration path is right now, then if you aren't seeing it that sounds like a good thing to Google around about and if you don't find an answer then ask the Redux folks.
@Alba-ig9hy
@Alba-ig9hy 2 жыл бұрын
@@jherr Cool. I was wondering whether it was an expected effect based on how you configured the store.
Mastering React Context: Do you NEED a state manager?
37:26
Jack Herrington
Рет қаралды 100 М.
Picking From 20 React State Managers
35:18
Jack Herrington
Рет қаралды 86 М.
How to treat Acne💉
00:31
ISSEI / いっせい
Рет қаралды 8 МЛН
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 33 МЛН
Deadpool family by Tsuriki Show
00:12
Tsuriki Show
Рет қаралды 7 МЛН
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 18 МЛН
Why I don't use React-Query and tRPC in Next.js
18:58
ByteGrad
Рет қаралды 99 М.
NextJS 12.1 SSR & SSG: Everything you need to know
31:18
Jack Herrington
Рет қаралды 99 М.
State Managers Are Making Your Code Worse In React
13:33
Web Dev Simplified
Рет қаралды 206 М.
Why Everyone Loves Zustand
29:27
Theo - t3․gg
Рет қаралды 112 М.
Next.js 15 Breakdown (Everything You Need To Know)
18:10
Web Dev Simplified
Рет қаралды 80 М.
Zustand - Complete Tutorial
19:27
Cosden Solutions
Рет қаралды 108 М.
Global State Management in NextJs 14 Using Zustand
51:17
Hamed Bahram
Рет қаралды 33 М.
Mastering React's useEffect
25:20
Jack Herrington
Рет қаралды 176 М.
10 common mistakes with the Next.js App Router
20:37
Vercel
Рет қаралды 233 М.
Cómo meter un TELÉFONO en un aula📲 #cortos
0:28
Jelly Jail Spanish
Рет қаралды 899 М.
Making Pink MacBook & iPhone 16 pro Max💻📱
0:41
Juno Craft 주노 크래프트
Рет қаралды 10 МЛН