aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ComponentUI/UI/Widget/Index.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ComponentUI/UI/Widget/Index.pm')
-rw-r--r--lib/ComponentUI/UI/Widget/Index.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/ComponentUI/UI/Widget/Index.pm b/lib/ComponentUI/UI/Widget/Index.pm
new file mode 100644
index 0000000..5421d7d
--- /dev/null
+++ b/lib/ComponentUI/UI/Widget/Index.pm
@@ -0,0 +1,15 @@
+package ComponentUI::UI::Widget::Index;
+
+use Reaction::UI::WidgetClass;
+use namespace::clean -except => [ qw(meta) ];
+
+after fragment widget {
+ $_{viewport}->ctx->log->debug('widget');
+ arg message_to_layout => $_{layout_message};
+};
+
+__PACKAGE__->meta->make_immutable;
+
+1;
+
+__END__