Skip to content

Commit

Permalink
docs(ffe-account-selector-react): Format numbers
Browse files Browse the repository at this point in the history
The component expects preformatted input. This change is required to
reproduce #6 locally.
  • Loading branch information
wkillerud committed Mar 1, 2018
1 parent 375e10f commit 59a69c4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ initialState = { value: '' };
<AccountSelector
accounts={[
{
accountNumber: '123456789101',
accountNumber: '1234 56 789101',
name: 'Brukskonto',
currencyCode: 'NOK',
balance: 1337,
},
{
accountNumber: '123456789102',
accountNumber: '1234 56 789102',
name: 'Brukskonto2',
currencyCode: 'NOK',
balance: 13337,
},
{
accountNumber: '223456789102',
accountNumber: '2234 56 789102',
name: 'Sparekonto1',
currencyCode: 'NOK',
balance: 109236,
},
{
accountNumber: '125347789102',
accountNumber: '1253 47 789102',
name: 'Sparekonto2',
currencyCode: 'NOK',
balance: 0,
Expand Down

0 comments on commit 59a69c4

Please sign in to comment.