remove class blocks from widget code
[catagits/Reaction.git] / lib / Reaction / UI / Widget / Action / Link.pm
1 package Reaction::UI::Widget::Action::Link;
2
3 use Reaction::UI::WidgetClass;
4
5 #I want to change this at some point.
6 use namespace::clean -except => [ qw(meta) ];
7
8
9 before fragment widget {
10   arg uri => $_{viewport}->uri;
11   arg label => $_{viewport}->label;
12 };
13
14 __PACKAGE__->meta->make_immutable;
15
16
17 1;
18
19 __END__;
20