Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CyrusOfEden/5b7d17beb7bb4ec6e61b4d455f18fb72 to your computer and use it in GitHub Desktop.
Save CyrusOfEden/5b7d17beb7bb4ec6e61b4d455f18fb72 to your computer and use it in GitHub Desktop.
.
├── 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