aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ComponentUI/UI/Widget/Index.pm
blob: 5421d7dc9b48b3ab4b1102ac4e4f0dfd27f16a6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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__