aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/ViewPort/Field/Text.pm
blob: b0c90da04c1511c54d7f3ce95097c27625900207 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package Reaction::UI::ViewPort::Field::Text;

use Reaction::Class;
use aliased 'Reaction::UI::ViewPort::Field';

use namespace::clean -except => [ qw(meta) ];
extends Field;


has '+value' => (isa => 'Str');
__PACKAGE__->meta->make_immutable;


1;