Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DoctorDerek/29f2b2ddfee77509f9759e85b6158256 to your computer and use it in GitHub Desktop.
Save DoctorDerek/29f2b2ddfee77509f9759e85b6158256 to your computer and use it in GitHub Desktop.
// Named exports in JavaScript and TypeScript
function Banana() {
return <div>🍌</div>
}
const price = 1.33
export { Banana, price }
// These are equivalent to the export syntax above:
export function Banana() {
return <div>🍌</div>
}
export const price = 1.33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment