clean-code
Strong SnippetsExports everything from a file with the same name as the directory it's in.
Useful when you don't want to work inside index files and want clean imports.
Instead of:
import CoolSnippet from 'components/common/CoolSnippet/CoolSnippet'
you get:
Instead of:
import CoolSnippet from 'components/common/CoolSnippet
Shortcut: export.everything.file
export * as ExportedAs from "./filename";