Created
June 26, 2021 18:15
-
-
Save thesabbir/f78b2556df957f80d8f946e06df1c6dd to your computer and use it in GitHub Desktop.
This file contains 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
./ | |
├── Avatar/ | |
│ └── Avatar.tsx | |
├── Button/ | |
│ ├── Base.spec.tsx | |
│ ├── Base.tsx | |
│ ├── Button.module.scss | |
│ ├── Button.spec.tsx | |
│ ├── Button.stories.mdx | |
│ ├── Button.tsx | |
│ └── index.tsx | |
├── Create/ | |
│ ├── CreateComment.tsx | |
│ ├── CreatePost.tsx | |
│ ├── CreatePostModal.tsx | |
│ ├── CreateProfile.tsx | |
│ └── Editor.tsx | |
├── Footer/ | |
│ ├── BottomNav.tsx | |
│ └── Footer.tsx | |
├── Form/ | |
│ ├── index.tsx | |
│ └── SignIn.tsx | |
├── Forum/ | |
│ ├── Announcement.tsx | |
│ ├── Filter.tsx | |
│ ├── Forum.tsx | |
│ ├── SkillLevels.tsx | |
│ └── Suggestion.tsx | |
├── Headers/ | |
│ ├── BreadNav.tsx | |
│ ├── ContestHeader.tsx | |
│ ├── Header.tsx | |
│ ├── Headers.module.scss | |
│ ├── Headers.stories.mdx | |
│ ├── index.ts | |
│ └── SubHeader.tsx | |
├── Icons/ | |
│ └── IconSearch.tsx | |
├── Inputs/ | |
│ ├── CheckBox.tsx | |
│ ├── DatePicker.tsx | |
│ ├── Number.tsx | |
│ ├── Text.tsx | |
│ └── TextArea.tsx | |
├── Logo/ | |
│ ├── index.tsx | |
│ ├── Logo.stories.mdx | |
│ └── Logo.tsx | |
├── Navigation/ | |
│ ├── NavigationMenu.module.scss | |
│ ├── NavigationMenu.stories.mdx | |
│ └── NavigationMenu.tsx | |
├── Post/ | |
│ ├── Comment.tsx | |
│ ├── Post.tsx | |
│ └── PostDetails.tsx | |
├── Progress/ | |
│ ├── Loading.tsx | |
│ └── Progressbar.tsx | |
├── Search/ | |
│ ├── index.tsx | |
│ ├── Search.module.scss | |
│ ├── Search.stories.mdx | |
│ └── Search.tsx | |
├── Toast/ | |
├── Tooltip/ | |
└── utils/ | |
├── cx.spec.ts | |
├── cx.ts | |
├── spec.module.scss | |
└── variables.scss |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment