Skip to content

Instantly share code, notes, and snippets.

@dineshdeveloper1
Created July 22, 2023 17:22
Show Gist options
  • Save dineshdeveloper1/648a333e1c55cd1081a1b3f1e9c82a7e to your computer and use it in GitHub Desktop.
Save dineshdeveloper1/648a333e1c55cd1081a1b3f1e9c82a7e to your computer and use it in GitHub Desktop.
React Function Component
const Hello = () => {
return (
<>
<h2>This is Function component</h2>
</>
)
}
export default Hello;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment