import './demo1.css'; import Button from '../../button'; import Field from '..'; import Input from '../../input'; import React from 'react'; import ReactDOM from 'react-dom'; class App extends React.Component { field: any; constructor(props) { super(props); this.field = new Field(this); } onGetValue() { console.log(this.field.getValue('input')); } render() { const { init, setValue, reset } = this.field; return (