Created
July 8, 2020 02:34
-
-
Save CyrusNuevoDia/5b7d17beb7bb4ec6e61b4d455f18fb72 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
. | |
├── assets | |
│ ├── icons | |
│ │ ├── favicon-128.png | |
│ │ ├── favicon-16.png | |
│ │ ├── favicon-32.png | |
│ │ └── favicon-48.png | |
│ └── illustrations | |
│ └── HouseParty.svg | |
├── package.json | |
├── src | |
│ ├── app | |
│ │ ├── flows | |
│ │ │ ├── app | |
│ │ │ └── onboarding | |
│ │ └── index.tsx | |
│ ├── app.html | |
│ ├── background | |
│ │ ├── events | |
│ │ │ └── onInstalled.ts | |
│ │ └── index.ts | |
│ ├── content-script | |
│ │ ├── index.ts | |
│ │ └── storeMatchers.ts | |
│ ├── index.d.ts | |
│ ├── manifest.json | |
│ ├── popup | |
│ │ └── Popup.tsx | |
│ ├── popup.html | |
│ ├── services | |
│ │ └── firebase.ts | |
│ └── system | |
│ ├── Motion.tsx | |
│ ├── Router.tsx | |
│ ├── ThemeProvider.tsx | |
│ ├── animations | |
│ │ ├── Hello.tsx | |
│ │ ├── RainBros.tsx | |
│ │ └── Sparkles.tsx | |
│ ├── colors.ts | |
│ ├── components | |
│ │ ├── ErrorScreen.tsx | |
│ │ ├── Hover.tsx | |
│ │ └── LoadingScreen.tsx | |
│ ├── hooks | |
│ │ ├── useDelay.ts | |
│ │ ├── useFormField.ts | |
│ │ ├── useFormStep.ts | |
│ │ ├── usePrefersReducedMotion.ts | |
│ │ └── useRandomInterval.ts | |
│ ├── illustrations | |
│ │ └── HouseParty.tsx | |
│ └── theme.ts | |
├── tsconfig.json | |
├── webpack.config.js | |
└── yarn.lock | |
38 directories, 76 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment