-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(#49): User Story: As a new rider, I want to provide my personal …
…information to create an account. - fixes on shared components
- Loading branch information
1 parent
0101831
commit 163cb1c
Showing
9 changed files
with
84 additions
and
37 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import Checkbox from './checkbox'; | ||
import GenericCard from './generic-card'; | ||
import InputPhone from './input-phone'; | ||
import InputText from './input-text'; | ||
import InputTextField from './input-text-field'; | ||
import KeyboardDismiss from './keyboard-dismiss'; | ||
import LoginForm from './login-form'; | ||
import ObscuredInputText from './obscured-input-text'; | ||
import PermissionBlocker from './permission-blocker'; | ||
import RoundedButton from './rounded-button'; | ||
import ScrollableFormContainer from './scrollable-form-container'; | ||
import SignUpForm from './sign-up-form'; | ||
import TestComponent from './test-component'; | ||
|
||
export { | ||
Checkbox, | ||
GenericCard, | ||
InputPhone, | ||
InputText, | ||
InputTextField, | ||
KeyboardDismiss, | ||
LoginForm, | ||
ObscuredInputText, | ||
PermissionBlocker, | ||
RoundedButton, | ||
ScrollableFormContainer, | ||
SignUpForm, | ||
TestComponent, | ||
}; |
6 changes: 3 additions & 3 deletions
6
packages/morro-taxi-rn-components/src/components/input-text-field/index.tsx
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
2 changes: 1 addition & 1 deletion
2
packages/morro-taxi-rn-components/src/components/input-text-field/props.ts
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
6 changes: 3 additions & 3 deletions
6
packages/morro-taxi-rn-components/src/components/login-form/index.tsx
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
12 changes: 5 additions & 7 deletions
12
packages/morro-taxi-rn-components/src/components/obscured-input-text/index.tsx
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
2 changes: 1 addition & 1 deletion
2
packages/morro-taxi-rn-components/src/components/scrollable-form-container/index.tsx
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,30 @@ | ||
import TestComponent from "./components/test-component"; | ||
import Checkbox from "./components/checkbox"; | ||
import GenericCard from "./components/generic-card"; | ||
import InputPhone from "./components/input-phone"; | ||
import InputText from "./components/input-text"; | ||
import InputTextField from "./components/input-text-field"; | ||
import KeyboardDismiss from "./components/keyboard-dismiss"; | ||
import LoginForm from "./components/login-form"; | ||
import ObscuredInputText from "./components/obscured-input-text"; | ||
import PermissionBlocker from "./components/permission-blocker"; | ||
import RoundedButton from "./components/rounded-button"; | ||
import ScrollableFormContainer from "./components/scrollable-form-container"; | ||
import SignUpForm from "./components/sign-up-form"; | ||
|
||
import InputText from './components/input-text'; | ||
|
||
export function multiply(a: number, b: number): Promise<number> { | ||
return Promise.resolve(a * b); | ||
} | ||
|
||
export { InputText, TestComponent }; | ||
|
||
export { | ||
TestComponent, | ||
Checkbox, | ||
GenericCard, | ||
InputPhone, | ||
InputText, | ||
InputTextField, | ||
KeyboardDismiss, | ||
LoginForm, | ||
ObscuredInputText, | ||
PermissionBlocker, | ||
RoundedButton, | ||
ScrollableFormContainer, | ||
SignUpForm, | ||
}; | ||
|