Skip to content

Instantly share code, notes, and snippets.

@jordic
Created December 5, 2019 08:53
Show Gist options
  • Select an option

  • Save jordic/9d7436425ebfe29316ebcaabf744a20f to your computer and use it in GitHub Desktop.

Select an option

Save jordic/9d7436425ebfe29316ebcaabf744a20f to your computer and use it in GitHub Desktop.

Revisions

  1. Jordi Collell created this gist Dec 5, 2019.
    11 changes: 11 additions & 0 deletions snippets.jsx
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@


    const MyFunctionnalComponent: React.FC = props => {
    useEffect(() => {
    // Using an IIFE
    (async function anyNameFunction() {
    await loadContent();
    })();
    }, []);
    return <div></div>;
    };