-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37214 from kubabutkiewicz/ts-migration/Reimbursem…
…entAccount/page [TS migration] Migrate 'ReimbursementAccount' page to TypeScript
- Loading branch information
Showing
34 changed files
with
421 additions
and
791 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
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
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
9 changes: 4 additions & 5 deletions
9
...s/ReimbursementAccount/ACHContractStep.js → .../ReimbursementAccount/ACHContractStep.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
import PropTypes from 'prop-types'; | ||
import React from 'react'; | ||
import CompleteVerification from './CompleteVerification/CompleteVerification'; | ||
|
||
const propTypes = { | ||
type ACHContractStepProps = { | ||
/** Goes to the previous step */ | ||
onBackButtonPress: PropTypes.func.isRequired, | ||
onBackButtonPress: () => void; | ||
}; | ||
|
||
function ACHContractStep({onBackButtonPress}) { | ||
function ACHContractStep({onBackButtonPress}: ACHContractStepProps) { | ||
return <CompleteVerification onBackButtonPress={onBackButtonPress} />; | ||
} | ||
|
||
ACHContractStep.propTypes = propTypes; | ||
ACHContractStep.displayName = 'ACHContractStep'; | ||
|
||
export default ACHContractStep; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.