Skip to content

Instantly share code, notes, and snippets.

@pingan8787
Created August 28, 2022 14:22
Show Gist options
  • Save pingan8787/f4868516364ea78f47ddba9afb9bd84f to your computer and use it in GitHub Desktop.
Save pingan8787/f4868516364ea78f47ddba9afb9bd84f to your computer and use it in GitHub Desktop.
ArrayComponent
const ArrayComponent = () => Array(3).fill(<span>Chris1993</span>); // ❌
function App() {
return (
<div className="App">
<ArrayComponent></ArrayComponent>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment