aboutsummaryrefslogtreecommitdiffstats
path: root/t/simple.pl
blob: 0244f7c1daf2be49a2c038de50ed9c77ec1a4645 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
use strict;
use warnings;

use lib 'lib';
use ComponentUI;

my $ctx = bless({ stash => {} }, 'ComponentUI');

my $view = ComponentUI->view('TT');

print $view->render($ctx, 'textfield', { self => { label => 'Label', message => 'Status message.' }, blocks => {} });