10/10 video not using libraries for everything and explaining the logic behind.
@talalahmedsiddiqi9263 Жыл бұрын
Thats just a perfect and really very useful video. Amazing concept of State Hook
@kultrol64404 жыл бұрын
Just wanted to say thank you, I'm new to react and was having some trouble coming up with the menu logic, but you made this seem pretty simple
@ziasahil40163 жыл бұрын
best video ever on youtube for sidebar with react..
@QuentinWatt3 жыл бұрын
Thanks.
@thomaslochner90684 жыл бұрын
Very simple and well explained. Thank you for helping me build my web portfolio!
@QuentinWatt4 жыл бұрын
Great to hear!
@NathanielScottYT3 жыл бұрын
Does anyone know how he gives elements css properties just by adding a class, such as 'fixed'?
@aliahmadchour3 жыл бұрын
Tailwind css
@NathanielScottYT3 жыл бұрын
@@aliahmadchour ty
@ngocvunguyen46953 жыл бұрын
bravo bravo!! I subscribed your channel. I wish I could found your videos sooner. big thanks, brother!
@QuentinWatt3 жыл бұрын
Thanks for the sub!
@dfcw4 жыл бұрын
Thank you for these videos!
@QuentinWatt4 жыл бұрын
My pleasure!
@joze.rios444 жыл бұрын
Thanks Quentin!
@QuentinWatt4 жыл бұрын
It's a pleasure.
@NASA_VAULT3 жыл бұрын
love it
@QuentinWatt3 жыл бұрын
I hope you don't get insulted. :)
@mahmoudhussein2712 жыл бұрын
amazing keep it up
@FrancoisBeyers3 жыл бұрын
This React course taught me more in 2 hours than most 40 hour courses did! Thanks Quentin. One question though, how would I be able to make the menu push from the left rather than overflow the content? So when you click the burger the whole screen shifts to the right as the menu comes in?
@QuentinWatt3 жыл бұрын
The solution you are looking for would be mostly css based. When you click a button the margin on the left should slowly grow for 0.3 - 0.5 seconds. that's all css based. You only need javascript to trigger the margin in the left to grow or shrink.
@Ninerpack3 жыл бұрын
Does anyone know how you would be able to toggle a different menu based on a media query or based on screen size?
@QuentinWatt3 жыл бұрын
Something like this: /* outside the media query */ .little-menu { display: none; } .big-menu { display: block; } @media only screen and (max-width: 600px) { .big-menu { display: none; } .little-menu { display: block; } }
@LvRezery4 жыл бұрын
Could you please add the github link for the icons?
@QuentinWatt4 жыл бұрын
Sorry about that. It's "font awesome", it's a 2 second Google search away though.