aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ComponentUI/View/Site/Widget/Layout.pm
blob: 5fef458a024e29e1693417f79cc81e347e79223d (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 {

  implements fragment main_content {
    if (my $inner = $_{viewport}->inner) {
      arg '_' => $inner;
      render 'viewport';
    }
  };

};

1;