UNPKG

react-kiwi-dropdown

Version:

A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.

19 lines (13 loc) 265 B
'use strict' module.exports = Schema var proto = Schema.prototype proto.space = null proto.normal = {} proto.property = {} function Schema(property, normal, space) { this.property = property this.normal = normal if (space) { this.space = space } }