Skip to content

Instantly share code, notes, and snippets.

@DRFR0ST
Created January 25, 2021 09:15
Show Gist options
  • Save DRFR0ST/6cfcd188b4efe37d039d3d72f9e437d6 to your computer and use it in GitHub Desktop.
Save DRFR0ST/6cfcd188b4efe37d039d3d72f9e437d6 to your computer and use it in GitHub Desktop.
src
├── api
│ ├── auth.ts
│ ├── client.ts
│ ├── commands.ts
│ ├── fcm.ts
│ ├── hooks.ts
│ ├── messages.ts
│ └── utils.ts
├── assets
│ ├── celebration.svg
│ ├── circles-logo.svg
│ ├── intro00.svg
│ ├── intro01.svg
│ ├── intro02.svg
│ ├── personal.svg
│ ├── verifed.svg
│ └── wave.svg
├── components
│ ├── common
│ │ ├── AccountFavContacts
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── AccountPicker
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── AccountSugestions
│ │ │ ├── index.tsx
│ │ │ ├── styles.ts
│ │ │ ├── Suggestion.tsx
│ │ │ └── trans.ts
│ │ ├── BottomNav
│ │ │ └── index.tsx
│ │ ├── Logo
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── MessageInput
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ └── SettingsDrawer
│ │ ├── index.tsx
│ │ ├── styles.ts
│ │ └── trans.ts
│ ├── pages
│ │ ├── Highlights
│ │ │ ├── index.tsx
│ │ │ ├── styles.ts
│ │ │ └── trans.ts
│ │ ├── Home
│ │ │ ├── index.tsx
│ │ │ ├── styles.ts
│ │ │ └── trans.ts
│ │ ├── Intro
│ │ │ ├── index.tsx
│ │ │ ├── IntroView.tsx
│ │ │ ├── styles.ts
│ │ │ └── trans.ts
│ │ ├── Login
│ │ │ ├── index.tsx
│ │ │ ├── styles.ts
│ │ │ └── trans.ts
│ │ ├── Menu
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── People
│ │ │ ├── ContactLabel.tsx
│ │ │ ├── index.tsx
│ │ │ ├── styles.ts
│ │ │ └── trans.ts
│ │ ├── Profile
│ │ │ ├── index.tsx
│ │ │ ├── styles.ts
│ │ │ └── trans.ts
│ │ ├── Room
│ │ │ ├── index.tsx
│ │ │ ├── MessageForm.tsx
│ │ │ ├── Messages.tsx
│ │ │ ├── MessagesSkeleton.tsx
│ │ │ ├── RecentRooms.tsx
│ │ │ ├── RoomView.tsx
│ │ │ ├── styles.ts
│ │ │ └── trans.ts
│ │ ├── Rooms
│ │ │ ├── CreateRoom.tsx
│ │ │ ├── index.tsx
│ │ │ ├── styles.ts
│ │ │ └── trans.ts
│ │ ├── Signup
│ │ │ ├── index.tsx
│ │ │ ├── styles.ts
│ │ │ └── trans.ts
│ │ ├── Splash
│ │ │ ├── index.tsx
│ │ │ ├── styles.ts
│ │ │ └── trans.ts
│ │ ├── Welcome
│ │ │ ├── index.tsx
│ │ │ ├── styles.ts
│ │ │ └── trans.ts
│ │ └── index.ts
│ ├── shared
│ └── utils
│ ├── Flex.test.tsx
│ └── Flex.tsx
├── config
│ ├── config.ts
│ ├── firebase.ts
│ └── theme.ts
├── storage
│ ├── hooks.ts
│ └── storage.ts
├── store
│ ├── actions.ts
│ ├── context.ts
│ ├── hooks.ts
│ ├── reducer.ts
│ └── StoreProvider.tsx
├── utils
│ ├── hooks
│ │ ├── general.ts
│ │ ├── locale.ts
│ │ └── sound.ts
│ ├── backgroundThemes.ts
│ └── general.ts
├── App.tsx
├── index.tsx
├── react-app-env.d.ts
├── Routes.tsx
├── serviceWorker.ts
├── setupTests.ts
└── types.ts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment