Skip to content

Tag: reactjs

material-ui tabs with nextjs?

I have a project in material-ui, nextjs and typescript. I’m trying to get my navbar to work with nextjs: But it causes the build to fail. Is there something I’m missing? Answer In this case, I believe you want to wrap the <Tab /> elements with the <Link /> ones.

use tailwind classes into styled-components

Can I use tailwind classes ( like colors ) into the styled-components ? I want to use some classes instead of CSS styles to style my components this is the way add class in styled-components: so unlike styles, attrs className is only one single string, and I want to add classes for size, color, display and et…