Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save alanbsmith/f84798fafa93a7ab080626f5a5b66738 to your computer and use it in GitHub Desktop.

Select an option

Save alanbsmith/f84798fafa93a7ab080626f5a5b66738 to your computer and use it in GitHub Desktop.
effective-testing-for-styled-components-file-structure
├ lib/
├── blocks/
| ├── Button/
| | ├── __tests__/
| | | ├── Icon.js  // <- Element Test
| | | └── index.js // <- Block Test
| | ├── Icon.js    // <- Element
| | ├── Text.js    // <- Element
| | └── index.js   // <- Block
| └── index.js     // <- export for all Blocks
├── elements/
| ├── Icon/
| | ├── __tests__/
| | | └── index.js  // <- Test
| | └── index.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment