switch over to sub style from AUTOLOAD style (WidgetClass changes)
[catagits/Reaction.git] / lib / ComponentUI / View / Site / Widget / Layout.pm
1 package ComponentUI::View::Site::Widget::Layout;
2
3 use Reaction::UI::WidgetClass;
4
5 class Layout which {
6
7   fragment  widget [ qw(menu sidebar header main_content) ];
8
9   fragment menu         [ string { "DUMMY" }        ];
10   fragment sidebar      [ string { "Sidebar Shit" } ];
11   fragment header       [ string { "DUMMY" }        ];
12   fragment main_content [ viewport over func('viewport', 'inner')];
13
14 };
15
16 1;