Hello world!
import React from "react";
export const HelloWorld = () => {
const [content, setContent] = React.useState('')
React.useEffect(() => {
let mounted = true
if (mounted) {
setContent("Hello world! I'm only here for fun.")
return ...
mrdhanz.hashnode.dev1 min read