Skip to content

Instantly share code, notes, and snippets.

@3nvi
Last active November 29, 2019 19:33
Show Gist options
  • Save 3nvi/fed37f5286be2575b8203ec37ff00c99 to your computer and use it in GitHub Desktop.
Save 3nvi/fed37f5286be2575b8203ec37ff00c99 to your computer and use it in GitHub Desktop.
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