diff options
| author | meganhong <34787696+meganhong@users.noreply.github.com> | 2020-07-13 15:08:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-13 18:08:06 -0400 |
| commit | 5dee1e585353b6d7407f521dfa9186dbf10e8226 (patch) | |
| tree | 752f2053ec50f817a44c90501f3594427d50af5a /src/screens/onboarding/index.ts | |
| parent | 95e160e64dc6a5763fdbdc7d7e5b814302446ba9 (diff) | |
TMA123: Add Profile Pictures UI (#17)
* rebasing
* rebasing
* remove debug code
* fixed margins and added navigation from login
* moved plist file into gitignore
* moved index.ts to onboarding directory
* install react native image crop picker
* added permissions into Info.plist
* rebasing
* minor changes for Justins PR
* change debug code back
Co-authored-by: meganhong <meganhong31@g.ucla.edu>
Diffstat (limited to 'src/screens/onboarding/index.ts')
| -rw-r--r-- | src/screens/onboarding/index.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/screens/onboarding/index.ts b/src/screens/onboarding/index.ts new file mode 100644 index 00000000..a45daa5d --- /dev/null +++ b/src/screens/onboarding/index.ts @@ -0,0 +1,5 @@ +export {default as Login} from './Login'; +export {default as Registration} from './Registration'; +export {default as Verification} from './Verification'; +export {default as Camera} from './Camera'; +export {default as Profile} from './Profile'; |
