Skip to content

Instantly share code, notes, and snippets.

@hboylan
Last active June 21, 2021 19:41
Show Gist options
  • Save hboylan/c0b7d1df491449a246065ab79f3b3f22 to your computer and use it in GitHub Desktop.
Save hboylan/c0b7d1df491449a246065ab79f3b3f22 to your computer and use it in GitHub Desktop.
Building Blocks blog post
src/components/
├── Button
│ ├── Button.stories.tsx
│ ├── Button.styled.ts
│ ├── Button.test.tsx
│ ├── Button.tsx
│ └── index.ts
├── Checkbox
│ ├── Checkbox.stories.tsx
│ ├── Checkbox.styled.ts
│ ├── Checkbox.test.tsx
│ ├── Checkbox.tsx
│ └── index.ts
...
└── Typeahead
├── Typeahead.stories.tsx
├── Typeahead.styled.ts
├── Typeahead.test.tsx
├── Typeahead.tsx
├── TypeaheadItem.tsx
├── TypeaheadItemGroup.tsx
└── index.ts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment