├── .buckconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .prettierrc.js ├── .watchmanconfig ├── README.md ├── __tests__ └── App-test.tsx ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── descry │ │ │ └── burner │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── descry │ │ │ └── burner │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── burner.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── burner.xcscheme ├── burner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── burner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── burnerTests │ ├── Info.plist │ └── burnerTests.m ├── metro.config.js ├── package.json ├── patches └── react-native-gifted-chat+0.16.3.patch ├── src ├── App.tsx ├── Assets │ └── images │ │ ├── index.ts │ │ └── logo │ │ ├── logo-small.png │ │ ├── logo-small@2x.png │ │ └── logo-small@3x.png ├── Components │ ├── GDJournal │ │ ├── GDJournalEntryInput │ │ │ └── index.tsx │ │ ├── GDJournalListItem │ │ │ └── index.tsx │ │ ├── GDJournalTitleInput │ │ │ └── index.tsx │ │ ├── GDMoodPicker │ │ │ └── index.tsx │ │ └── index.ts │ ├── PCActionSheetOpener │ │ └── index.tsx │ ├── PCAlert │ │ └── index.tsx │ ├── PCButton │ │ └── index.tsx │ ├── PCCalendar │ │ └── index.tsx │ ├── PCCard │ │ └── index.tsx │ ├── PCChat │ │ ├── PCChatListItem │ │ │ └── index.tsx │ │ ├── PCPendingRequestItem │ │ │ └── index.tsx │ │ └── index.tsx │ ├── PCForms │ │ ├── PCCheckbox │ │ │ └── index.tsx │ │ ├── PCDropdownPicker │ │ │ └── index.tsx │ │ ├── PCErrorMsg │ │ │ └── index.tsx │ │ ├── PCForm │ │ │ └── index.tsx │ │ ├── PCInput │ │ │ └── index.tsx │ │ ├── PCRadio │ │ │ └── index.tsx │ │ ├── PCSubmitButton │ │ │ └── index.tsx │ │ └── index.ts │ ├── PCHeader │ │ └── index.tsx │ ├── PCIcon │ │ └── index.tsx │ ├── PCImage │ │ └── index.tsx │ ├── PCKeyboardAvoider │ │ └── index.tsx │ ├── PCLoading │ │ └── index.tsx │ ├── PCMisc │ │ └── index.tsx │ ├── PCProgress │ │ └── index.tsx │ ├── PCSnapCarousel │ │ └── index.tsx │ ├── PCText │ │ └── index.tsx │ ├── PCTile │ │ └── index.tsx │ ├── PCVideoChat │ │ └── index.tsx │ └── index.ts ├── Config │ ├── appConfig.json │ └── index.ts ├── Containers │ ├── AuthContainer │ │ └── index.tsx │ └── MainContainer │ │ └── index.tsx ├── Context │ ├── FirebaseContext.ts │ └── UserTypeContext.ts ├── Features │ ├── Blogs │ │ └── index.tsx │ ├── Chat │ │ └── index.tsx │ ├── Journal │ │ └── index.tsx │ ├── Market │ │ └── index.tsx │ ├── Quiz │ │ └── index.tsx │ ├── SearchHospital │ │ └── index.tsx │ └── VideoChat │ │ └── index.tsx ├── FireNames │ └── Constants.ts ├── Hooks │ └── index.ts ├── Navigators │ ├── Auth │ │ └── index.tsx │ ├── Chat │ │ └── index.tsx │ ├── Journal │ │ └── index.tsx │ ├── NavStackParams.ts │ ├── Root │ │ └── index.tsx │ ├── STACKS.ts │ ├── Settings │ │ └── index.tsx │ └── index.tsx ├── Screens │ ├── Chat │ │ ├── Pending │ │ │ ├── index.tsx │ │ │ └── validation │ │ │ │ └── index.ts │ │ ├── Request │ │ │ ├── index.tsx │ │ │ └── validation │ │ │ │ └── index.ts │ │ ├── Room │ │ │ └── index.tsx │ │ └── RoomList │ │ │ └── index.tsx │ ├── Home │ │ └── index.tsx │ ├── Initial │ │ └── index.tsx │ ├── Journal │ │ ├── CommunityFeed │ │ │ └── index.tsx │ │ ├── EntryList │ │ │ └── index.tsx │ │ └── EntryWrite │ │ │ ├── index.tsx │ │ │ └── validation │ │ │ └── index.ts │ ├── Login │ │ ├── index.tsx │ │ └── validation │ │ │ └── index.ts │ ├── Practice │ │ └── index.tsx │ ├── Profile │ │ └── Edit │ │ │ ├── index.tsx │ │ │ └── validation │ │ │ └── index.ts │ ├── Quiz │ │ ├── criteria │ │ │ └── index.ts │ │ ├── index.tsx │ │ └── questions │ │ │ └── example.json │ ├── SCREENS.ts │ ├── Settings │ │ └── index.tsx │ ├── Signup │ │ ├── index.tsx │ │ └── validation │ │ │ └── index.ts │ └── index.ts ├── Services │ ├── api.ts │ ├── fetchServices │ │ └── index.ts │ └── modules │ │ └── index.ts ├── Store │ └── index.tsx ├── Theme │ └── index.ts ├── Translations │ ├── en │ │ └── index.ts │ ├── index.ts │ └── ko │ │ └── index.ts ├── Types │ └── index.ts └── Utils │ ├── Logger.ts │ ├── Styles.ts │ ├── asyncStorage │ ├── StorageItemsNames.ts │ └── index.ts │ ├── dataConverter │ └── index.ts │ ├── fire │ └── index.ts │ ├── imagePicker │ └── index.ts │ ├── misc │ └── index.ts │ └── permissions │ └── index.ts ├── storybook ├── addons.js ├── index.js ├── rn-addons.js └── stories │ ├── Button │ ├── Button.stories.js │ └── index.js │ ├── CenterView │ ├── index.js │ └── style.js │ ├── PCButton │ └── PCButton.stories.tsx │ ├── PCForms │ ├── PCDropdownPicker │ │ └── PCDropdownPicker.stories.tsx │ └── PCInput │ │ └── PCInput.stories.tsx │ ├── PCHeader │ └── PCHeader.stories.tsx │ ├── PCImage │ └── PCImage.stories.tsx │ ├── PCSnapCarousel │ └── PCSnapCarousel.stories.tsx │ ├── PCText │ └── PCText.stories.tsx │ ├── Welcome │ ├── Welcome.stories.js │ └── index.js │ ├── index.js │ └── tsExample.tsx ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/descry/burner/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/debug/java/com/descry/burner/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/descry/burner/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/java/com/descry/burner/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/descry/burner/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/java/com/descry/burner/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/burner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/burner.xcodeproj/xcshareddata/xcschemes/burner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burner.xcodeproj/xcshareddata/xcschemes/burner.xcscheme -------------------------------------------------------------------------------- /ios/burner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/burner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/burner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burner/AppDelegate.h -------------------------------------------------------------------------------- /ios/burner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burner/AppDelegate.m -------------------------------------------------------------------------------- /ios/burner/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burner/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/burner/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burner/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/burner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burner/Info.plist -------------------------------------------------------------------------------- /ios/burner/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burner/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/burner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burner/main.m -------------------------------------------------------------------------------- /ios/burnerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burnerTests/Info.plist -------------------------------------------------------------------------------- /ios/burnerTests/burnerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/ios/burnerTests/burnerTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/package.json -------------------------------------------------------------------------------- /patches/react-native-gifted-chat+0.16.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/patches/react-native-gifted-chat+0.16.3.patch -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Assets/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Assets/images/index.ts -------------------------------------------------------------------------------- /src/Assets/images/logo/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Assets/images/logo/logo-small.png -------------------------------------------------------------------------------- /src/Assets/images/logo/logo-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Assets/images/logo/logo-small@2x.png -------------------------------------------------------------------------------- /src/Assets/images/logo/logo-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Assets/images/logo/logo-small@3x.png -------------------------------------------------------------------------------- /src/Components/GDJournal/GDJournalEntryInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/GDJournal/GDJournalEntryInput/index.tsx -------------------------------------------------------------------------------- /src/Components/GDJournal/GDJournalListItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/GDJournal/GDJournalListItem/index.tsx -------------------------------------------------------------------------------- /src/Components/GDJournal/GDJournalTitleInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/GDJournal/GDJournalTitleInput/index.tsx -------------------------------------------------------------------------------- /src/Components/GDJournal/GDMoodPicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/GDJournal/GDMoodPicker/index.tsx -------------------------------------------------------------------------------- /src/Components/GDJournal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/GDJournal/index.ts -------------------------------------------------------------------------------- /src/Components/PCActionSheetOpener/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCActionSheetOpener/index.tsx -------------------------------------------------------------------------------- /src/Components/PCAlert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCAlert/index.tsx -------------------------------------------------------------------------------- /src/Components/PCButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCButton/index.tsx -------------------------------------------------------------------------------- /src/Components/PCCalendar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCCalendar/index.tsx -------------------------------------------------------------------------------- /src/Components/PCCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCCard/index.tsx -------------------------------------------------------------------------------- /src/Components/PCChat/PCChatListItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCChat/PCChatListItem/index.tsx -------------------------------------------------------------------------------- /src/Components/PCChat/PCPendingRequestItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCChat/PCPendingRequestItem/index.tsx -------------------------------------------------------------------------------- /src/Components/PCChat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCChat/index.tsx -------------------------------------------------------------------------------- /src/Components/PCForms/PCCheckbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCForms/PCCheckbox/index.tsx -------------------------------------------------------------------------------- /src/Components/PCForms/PCDropdownPicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCForms/PCDropdownPicker/index.tsx -------------------------------------------------------------------------------- /src/Components/PCForms/PCErrorMsg/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCForms/PCErrorMsg/index.tsx -------------------------------------------------------------------------------- /src/Components/PCForms/PCForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCForms/PCForm/index.tsx -------------------------------------------------------------------------------- /src/Components/PCForms/PCInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCForms/PCInput/index.tsx -------------------------------------------------------------------------------- /src/Components/PCForms/PCRadio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCForms/PCRadio/index.tsx -------------------------------------------------------------------------------- /src/Components/PCForms/PCSubmitButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCForms/PCSubmitButton/index.tsx -------------------------------------------------------------------------------- /src/Components/PCForms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCForms/index.ts -------------------------------------------------------------------------------- /src/Components/PCHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCHeader/index.tsx -------------------------------------------------------------------------------- /src/Components/PCIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCIcon/index.tsx -------------------------------------------------------------------------------- /src/Components/PCImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCImage/index.tsx -------------------------------------------------------------------------------- /src/Components/PCKeyboardAvoider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCKeyboardAvoider/index.tsx -------------------------------------------------------------------------------- /src/Components/PCLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCLoading/index.tsx -------------------------------------------------------------------------------- /src/Components/PCMisc/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCMisc/index.tsx -------------------------------------------------------------------------------- /src/Components/PCProgress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCProgress/index.tsx -------------------------------------------------------------------------------- /src/Components/PCSnapCarousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCSnapCarousel/index.tsx -------------------------------------------------------------------------------- /src/Components/PCText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCText/index.tsx -------------------------------------------------------------------------------- /src/Components/PCTile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCTile/index.tsx -------------------------------------------------------------------------------- /src/Components/PCVideoChat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/PCVideoChat/index.tsx -------------------------------------------------------------------------------- /src/Components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Components/index.ts -------------------------------------------------------------------------------- /src/Config/appConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Config/appConfig.json -------------------------------------------------------------------------------- /src/Config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Config/index.ts -------------------------------------------------------------------------------- /src/Containers/AuthContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Containers/AuthContainer/index.tsx -------------------------------------------------------------------------------- /src/Containers/MainContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Containers/MainContainer/index.tsx -------------------------------------------------------------------------------- /src/Context/FirebaseContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Context/FirebaseContext.ts -------------------------------------------------------------------------------- /src/Context/UserTypeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Context/UserTypeContext.ts -------------------------------------------------------------------------------- /src/Features/Blogs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Features/Blogs/index.tsx -------------------------------------------------------------------------------- /src/Features/Chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Features/Chat/index.tsx -------------------------------------------------------------------------------- /src/Features/Journal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Features/Journal/index.tsx -------------------------------------------------------------------------------- /src/Features/Market/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Features/Market/index.tsx -------------------------------------------------------------------------------- /src/Features/Quiz/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Features/Quiz/index.tsx -------------------------------------------------------------------------------- /src/Features/SearchHospital/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Features/SearchHospital/index.tsx -------------------------------------------------------------------------------- /src/Features/VideoChat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Features/VideoChat/index.tsx -------------------------------------------------------------------------------- /src/FireNames/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/FireNames/Constants.ts -------------------------------------------------------------------------------- /src/Hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Hooks/index.ts -------------------------------------------------------------------------------- /src/Navigators/Auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Navigators/Auth/index.tsx -------------------------------------------------------------------------------- /src/Navigators/Chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Navigators/Chat/index.tsx -------------------------------------------------------------------------------- /src/Navigators/Journal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Navigators/Journal/index.tsx -------------------------------------------------------------------------------- /src/Navigators/NavStackParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Navigators/NavStackParams.ts -------------------------------------------------------------------------------- /src/Navigators/Root/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Navigators/Root/index.tsx -------------------------------------------------------------------------------- /src/Navigators/STACKS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Navigators/STACKS.ts -------------------------------------------------------------------------------- /src/Navigators/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Navigators/Settings/index.tsx -------------------------------------------------------------------------------- /src/Navigators/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Navigators/index.tsx -------------------------------------------------------------------------------- /src/Screens/Chat/Pending/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Chat/Pending/index.tsx -------------------------------------------------------------------------------- /src/Screens/Chat/Pending/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Chat/Pending/validation/index.ts -------------------------------------------------------------------------------- /src/Screens/Chat/Request/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Chat/Request/index.tsx -------------------------------------------------------------------------------- /src/Screens/Chat/Request/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Chat/Request/validation/index.ts -------------------------------------------------------------------------------- /src/Screens/Chat/Room/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Chat/Room/index.tsx -------------------------------------------------------------------------------- /src/Screens/Chat/RoomList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Chat/RoomList/index.tsx -------------------------------------------------------------------------------- /src/Screens/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Home/index.tsx -------------------------------------------------------------------------------- /src/Screens/Initial/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Initial/index.tsx -------------------------------------------------------------------------------- /src/Screens/Journal/CommunityFeed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Journal/CommunityFeed/index.tsx -------------------------------------------------------------------------------- /src/Screens/Journal/EntryList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Journal/EntryList/index.tsx -------------------------------------------------------------------------------- /src/Screens/Journal/EntryWrite/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Journal/EntryWrite/index.tsx -------------------------------------------------------------------------------- /src/Screens/Journal/EntryWrite/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Journal/EntryWrite/validation/index.ts -------------------------------------------------------------------------------- /src/Screens/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Login/index.tsx -------------------------------------------------------------------------------- /src/Screens/Login/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Login/validation/index.ts -------------------------------------------------------------------------------- /src/Screens/Practice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Practice/index.tsx -------------------------------------------------------------------------------- /src/Screens/Profile/Edit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Profile/Edit/index.tsx -------------------------------------------------------------------------------- /src/Screens/Profile/Edit/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Profile/Edit/validation/index.ts -------------------------------------------------------------------------------- /src/Screens/Quiz/criteria/index.ts: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /src/Screens/Quiz/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Quiz/index.tsx -------------------------------------------------------------------------------- /src/Screens/Quiz/questions/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Quiz/questions/example.json -------------------------------------------------------------------------------- /src/Screens/SCREENS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/SCREENS.ts -------------------------------------------------------------------------------- /src/Screens/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Settings/index.tsx -------------------------------------------------------------------------------- /src/Screens/Signup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Signup/index.tsx -------------------------------------------------------------------------------- /src/Screens/Signup/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/Signup/validation/index.ts -------------------------------------------------------------------------------- /src/Screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Screens/index.ts -------------------------------------------------------------------------------- /src/Services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Services/api.ts -------------------------------------------------------------------------------- /src/Services/fetchServices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Services/fetchServices/index.ts -------------------------------------------------------------------------------- /src/Services/modules/index.ts: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /src/Store/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Store/index.tsx -------------------------------------------------------------------------------- /src/Theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Theme/index.ts -------------------------------------------------------------------------------- /src/Translations/en/index.ts: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /src/Translations/index.ts: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /src/Translations/ko/index.ts: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /src/Types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Types/index.ts -------------------------------------------------------------------------------- /src/Utils/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Utils/Logger.ts -------------------------------------------------------------------------------- /src/Utils/Styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Utils/Styles.ts -------------------------------------------------------------------------------- /src/Utils/asyncStorage/StorageItemsNames.ts: -------------------------------------------------------------------------------- 1 | export default Object.freeze({}) 2 | -------------------------------------------------------------------------------- /src/Utils/asyncStorage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Utils/asyncStorage/index.ts -------------------------------------------------------------------------------- /src/Utils/dataConverter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Utils/dataConverter/index.ts -------------------------------------------------------------------------------- /src/Utils/fire/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Utils/fire/index.ts -------------------------------------------------------------------------------- /src/Utils/imagePicker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Utils/imagePicker/index.ts -------------------------------------------------------------------------------- /src/Utils/misc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Utils/misc/index.ts -------------------------------------------------------------------------------- /src/Utils/permissions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/src/Utils/permissions/index.ts -------------------------------------------------------------------------------- /storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/addons.js -------------------------------------------------------------------------------- /storybook/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/index.js -------------------------------------------------------------------------------- /storybook/rn-addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/rn-addons.js -------------------------------------------------------------------------------- /storybook/stories/Button/Button.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/Button/Button.stories.js -------------------------------------------------------------------------------- /storybook/stories/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/Button/index.js -------------------------------------------------------------------------------- /storybook/stories/CenterView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/CenterView/index.js -------------------------------------------------------------------------------- /storybook/stories/CenterView/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/CenterView/style.js -------------------------------------------------------------------------------- /storybook/stories/PCButton/PCButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/PCButton/PCButton.stories.tsx -------------------------------------------------------------------------------- /storybook/stories/PCForms/PCDropdownPicker/PCDropdownPicker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/PCForms/PCDropdownPicker/PCDropdownPicker.stories.tsx -------------------------------------------------------------------------------- /storybook/stories/PCForms/PCInput/PCInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/PCForms/PCInput/PCInput.stories.tsx -------------------------------------------------------------------------------- /storybook/stories/PCHeader/PCHeader.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/PCHeader/PCHeader.stories.tsx -------------------------------------------------------------------------------- /storybook/stories/PCImage/PCImage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/PCImage/PCImage.stories.tsx -------------------------------------------------------------------------------- /storybook/stories/PCSnapCarousel/PCSnapCarousel.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/PCSnapCarousel/PCSnapCarousel.stories.tsx -------------------------------------------------------------------------------- /storybook/stories/PCText/PCText.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/PCText/PCText.stories.tsx -------------------------------------------------------------------------------- /storybook/stories/Welcome/Welcome.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/Welcome/Welcome.stories.js -------------------------------------------------------------------------------- /storybook/stories/Welcome/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/Welcome/index.js -------------------------------------------------------------------------------- /storybook/stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/index.js -------------------------------------------------------------------------------- /storybook/stories/tsExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/storybook/stories/tsExample.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santa70916112/react-native-burn/HEAD/yarn.lock --------------------------------------------------------------------------------