UNPKG

239 BJavaScriptView Raw
1import Form from './Form';
2export { FormProps } from './Form';
3/* istanbul ignore next */
4
5Form.install = function (app) {
6 app.component(Form.name, Form);
7 app.component(Form.Item.name, Form.Item);
8 return app;
9};
10
11export default Form;
\No newline at end of file