fixed bool field
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Field / String.pm
1 package Reaction::UI::ViewPort::Field::String;
2
3 use Reaction::Class;
4 use aliased 'Reaction::UI::ViewPort::Field';
5
6 use namespace::clean -except => [ qw(meta) ];
7 extends Field;
8
9
10 has '+value' => (isa => 'Str');
11 __PACKAGE__->meta->make_immutable;
12
13
14 1;