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/ec0654602d679a7e00f4fa305493873e to your computer and use it in GitHub Desktop.
Save DoctorDerek/ec0654602d679a7e00f4fa305493873e to your computer and use it in GitHub Desktop.
// Default exports in JavaScript and TypeScript
function Banana() {
return <div>🍌</div>
}
const price = 1.33
// In this example, price is a named export:
export { Banana as default, price }
// These are equivalent to the export syntax above:
export default 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