Skip to content

Instantly share code, notes, and snippets.

@tjunghans
Created August 8, 2025 18:06
Show Gist options
  • Select an option

  • Save tjunghans/a2124575815fd66ef14d74470716fa02 to your computer and use it in GitHub Desktop.

Select an option

Save tjunghans/a2124575815fd66ef14d74470716fa02 to your computer and use it in GitHub Desktop.
  • One exported class per file. Event better, one class per file. Uppercase *.ts file, example: MyClass.ts
  • One exported React component per file. Event better, one React component per file. Uppercase *.tsx file, example MyComponent.ts.
  • Hide complexity and simplify imports with folders and barrel files (index.ts).
  • Utilities, functions are in lowercase files.
  • Custom hooks are in "useMyCustomhook.ts" files.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment