Posts by Wellington Roth • 44 points
2 posts
-
0
votes1
answer63
viewsQ: Just open the clicked modal?
I have a map of a array object. <S.Section> {data.slice(oldItems, showItems).map((it, index) => { return ( <> <S.Box key={index} onClick={openDetails}> <S.Image…
-
1
votes1
answer246
viewsA: How to style an imported component using Styled Components
Hello, you must import your component into your styled-components and then export to the file you want to use. Ex: IN THE STYLED-COMPONENT FOLDER import {ComponenteImportado} from…