mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 12:42:58 +08:00
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import { Component } from 'react';
|
|
import * as NumericInput from 'react-numeric-input';
|
|
|
|
export class NumericInputTest extends Component {
|
|
render() {
|
|
return(<NumericInput />);
|
|
}
|
|
}
|