-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
29 lines (18 loc) · 830 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TagInput = exports.PasswordInput = exports.EmailInput = exports.Select = undefined;
var _select = require("./select");
var _select2 = _interopRequireDefault(_select);
var _emailInput = require("./email-input");
var _emailInput2 = _interopRequireDefault(_emailInput);
var _passwordInput = require("./password-input");
var _passwordInput2 = _interopRequireDefault(_passwordInput);
var _tagInput = require("./tag-input");
var _tagInput2 = _interopRequireDefault(_tagInput);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
exports.Select = _select2.default;
exports.EmailInput = _emailInput2.default;
exports.PasswordInput = _passwordInput2.default;
exports.TagInput = _tagInput2.default;