Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const bankLocation = FormPageBuilder
- .setLabel('Investor\'s Bank Location')
- .setField('form', UnionBuilder
- .setUnion([us, international])
- .setDispatch(({ country = 'US' }) => (
- country === 'US'
- ? us
- : international
- )));
Add Comment
Please, Sign In to add comment