Last active
June 21, 2021 19:41
-
-
Save hboylan/c0b7d1df491449a246065ab79f3b3f22 to your computer and use it in GitHub Desktop.
Building Blocks blog post
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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