13 lines
279 B
Plaintext
13 lines
279 B
Plaintext
|
|
<FormControl>
|
||
|
|
<FormLabel>React number format</FormLabel>
|
||
|
|
<Input
|
||
|
|
value={value}
|
||
|
|
onChange={(event) => setValue(event.target.value)}
|
||
|
|
placeholder="Placeholder"
|
||
|
|
slotProps={{
|
||
|
|
input: {
|
||
|
|
component: NumericFormatAdapter,
|
||
|
|
},
|
||
|
|
}}
|
||
|
|
/>
|
||
|
|
</FormControl>
|