From 78fa2b549f67afc3525543b0bccfb08a9e06b006 Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Tue, 7 Nov 2017 09:50:48 -0800 Subject: [PATCH] include button, label, and style components --- vdom/helpers.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vdom/helpers.py b/vdom/helpers.py index 0543587..7721d9c 100644 --- a/vdom/helpers.py +++ b/vdom/helpers.py @@ -96,6 +96,8 @@ output = create_component('output') progress = create_component('progress') input_ = create_component('input', allow_children=False) +button = create_component('button') +label = create_component('label') # Interactive elements details = create_component('details') @@ -103,3 +105,5 @@ menu = create_component('menu') menuitem = create_component('menuitem') summary = create_component('summary') + +style = create_component('style')