aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ComponentUI/View/Site/Widget/Layout.pm
blob: 36276a2d6b151b0746b8f27f7bee7fd3e601192e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package ComponentUI::View::Site::Widget::Layout;

use Reaction::UI::WidgetClass;

class Layout which {

  fragment  widget [ qw(menu sidebar header main_content) ];

  fragment menu         [ string { "DUMMY" }        ];
  fragment sidebar      [ string { "Sidebar Shit" } ];
  fragment header       [ string { "DUMMY" }        ];
  fragment main_content [ viewport over func('viewport', 'inner')];

};

1;