From 32f4720111a842e9594b51c8b4d0b8e3fe22cc2d Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sat, 28 May 2016 12:50:06 +0300 Subject: [PATCH] Add missing group component (stolen in shapes refactor). --- src/uxbox/ui/shapes/group.cljs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/uxbox/ui/shapes/group.cljs b/src/uxbox/ui/shapes/group.cljs index e2b114d13b..f21a94a441 100644 --- a/src/uxbox/ui/shapes/group.cljs +++ b/src/uxbox/ui/shapes/group.cljs @@ -74,3 +74,9 @@ [:g attrs (for [item (reverse (into [] xf items))] (rum/with-key item (str (:id item))))]))) + +(def group-shape + (mx/component + {:render group-shape-render + :name "group-shape" + :mixins [mx/static]}))