Last active
November 29, 2019 19:33
-
-
Save 3nvi/fed37f5286be2575b8203ec37ff00c99 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import styled from '@emotion/styled'; | |
const StyledDiv = styled.div``; | |
const App = () => { | |
const [randomValue, setRandomValue] = React.useState(0); | |
return ( | |
<React.Fragment> | |
{new Array(50).fill(null).map((__, i) => ( | |
<StyledDiv key={i}>Hello World</StyledDiv> | |
))} | |
<button onClick={() => setRandomValue(Math.random())}>Force Rerender</button> | |
</React.Fragment> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment