Posts by Rafael Mendes • 1 point
3 posts
-
0
votes2
answers970
viewsA: Take the data from a dynamic form and pass to an array type state
You can try to do a function with Document.querySelectorAll('input'); then map the input array by extracting the value for a new array.
-
0
votes1
answer178
viewsA: How to import a css file within JSX by link tag or script (React)
I believe you will have to refactor the code using the Imports the way it is done in React, or else you can put this HTML code inside the Index that is in the public folder. As for Javascript I’m…
-
-1
votes2
answers880
viewsA: Adjustments to the React.JS CSS
Your Divs are with Display: Block; try using Display: flex; then insert flex-Direction: Row (I think the default is Collumn); this is only done by adjusting the Divs that are inside by placing the…