In this tutorial you will build a simple, responsive and animated navigation bar with React JS. You will use styled-components for the css and reac...
For further actions, you may consider blocking this person and/or reporting abuse
You need to stop relying upon hoisting as all of your examples would throw an eslint error. For example, you are calling
CollapseWrapper
before it has been declared and this is consistent throughout your code unless you are actually hoisting functions by intent declare the pointer first.This is a standard way of use Styled Components in React but thanks for your comment. If you dont link to use it this way you can put the styled component on another file
My comment was purely about your javascript. The code you have given us as an example would fail when run through eslint.
Please be careful sharing code that is bad practice as you are encouraging others to write code in this way.
I understand what you are trying to say but, is not true.
You will not get any linting error, if you quickly install eslint and extend airbnb preset or even react-standard for instance on my demo you will see that no error or warning will show up.
Declaring styled-components in react at the end of the file is not consider bad practice either.
Thanks for the nice series of posts on DEV, Nuno~
May I request to add syntax highlights for code snippets?
Check out the Editor Guide for more info.
Thx for the tip ! I'll do it on all my articles !
Thank you ~
great post
Thank you !!
Thank you for the amazing, simple and straightforward. I was looking into spring and your post really helped :)
Thank you so much for your positive feedback !
Thank you so much, I am a beginner this is exactly what I was looking for, simple and straightforward.
Im glad I could help you ! Thx for the feedback !
thanks for the tutorial. can we make navbar font color & background color different for different links?
sure you can, just style the a tags accordingly
Thanks for the tut! I'm just curious why you would need to refactor to an App.js class component?
Today with hooks you dont need it, but when I made the tutorial i still used class based react components
thanks for this wonderful tutorials. I have an observation which is Module not found: Can't resolve './styles/Global'.....this is the error i get, thanks.
Thanks for your feedback !
Did you create de globalstyles file ?
You tried to follow the tutorial or you get that error cloning the repository ?