UNPKG

ms-react-reactive-form

Version:

an implementation of the Reactive Form concept in React, supporting Javascript and Typescript

13 lines (12 loc) 267 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class FormGroup { constructor(ctrs) { this.controls = ctrs; this.validity = true; this.submited = false; } ; } exports.default = FormGroup; ;