Add CurrencyInput
This commit is contained in:
parent
66e292b3d2
commit
7d0e4ff737
2 changed files with 11 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
// License: LGPL-3.0-or-later
|
||||
import * as React from 'react';
|
||||
import 'jest';
|
||||
import ReactMaskedInput from './ReactMaskedInput'
|
||||
|
||||
describe('ReactMaskedInput', () => {
|
||||
test('your test here', () => {
|
||||
expect(false).toBe(true)
|
||||
})
|
||||
})
|
|
@ -1,5 +1,6 @@
|
|||
// License: Unlicense
|
||||
// from: https://github.com/text-mask/text-mask/pull/760/commits/f66c81b62c4894b7da43862bee5943f659dc7537
|
||||
|
||||
const dollarSign = '$'
|
||||
const emptyString = ''
|
||||
const comma = ','
|
||||
|
|
Loading…
Reference in a new issue