Most voted "components" questions
58 questions
Sort by count of
-
0
votes0
answers35
viewsHow to not overwrite components using Tailwindcss?
I created a component Header and when I log it into a component called Home, Header overwrites the h3 and even though I tried to put a display block on each component, it didn’t work…
-
0
votes0
answers15
viewsWhen I try to compile error. Error: Invalid hook call
My code was working until I tried to use Styled-Components, it gives this error Error: Invalid hook call. Hooks can only be called Inside of the body of a Function Component. The only thing I did…
-
-1
votes1
answer148
viewsComponents for Integration Services - SSIS - Data Flow
Hello! I have a need to develop a component for Integration Services (SSIS) -> Data Flow. I already have components developed for the Control Flow area, but I have never developed anything for…
-
-1
votes1
answer224
viewsReactjs - How to call the state from an input to another Class
beauty? Well I am a layman in Reactjs, I am learning and at the same time using for work and so I have the following problem: I have a checkbox that if it is checked a button of another component…
-
-1
votes1
answer94
viewsPass props to React grandson component
I have 3 components, Login, Loginpresentation and Cpfpresentation. Login is the component where I contain all the logic and that call the respective "... Presentation", Login and Cpf Presentation…
-
-1
votes1
answer269
viewsError generating Vue Bundle: Module parse failed: Unexpected token (1:0)
I’m trying to install Vue in a project made in php without framework, what I want is to transform parts of the template into components (menu, top.). When trying to generate Bundle I have this…
-
-1
votes0
answers36
viewsHow to make a component with a function
PURE CODE <input type="text" id="nf" placeholder="Nota Fiscal" /> <input type="text" id="cnpj" placeholder="CNPJ" /> <input type="button" value="Buscar" onclick="buscarNF()" />…
-
-2
votes1
answer21
views(REACT) Should I compose only the repeating tags?
As the title itself says: Should I compose only the repeating items? an example: <navbar> <a href="LINK"> <img src="imagem.jpg" alt="Minha Figura" /> </a> <ul>…