UNPKG

react-kiwi-dropdown

Version:

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

17 lines (12 loc) 290 B
'use strict'; const Container = require('./container'); const Node = require('./node'); class Parenthesis extends Node { constructor (opts) { super(opts); this.type = 'paren'; this.parenType = ''; } } Container.registerWalker(Parenthesis); module.exports = Parenthesis;