Skip to content

Instantly share code, notes, and snippets.

@ndudar
Last active February 14, 2023 21:24
Show Gist options
  • Save ndudar/cbcd690d7fab054750d7ea4c36b06ebe to your computer and use it in GitHub Desktop.
Save ndudar/cbcd690d7fab054750d7ea4c36b06ebe to your computer and use it in GitHub Desktop.
Pseudocode for the App.js
import React from "react"
import useMyCustomHook from "../utils/myCustomHook"
const Component = () => {
const { data } = useMyCustomHook(param)
return (
JSX that references data
)
}
export default Component
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment