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

use Reaction::Class;
use namespace::clean -except => [ qw(meta) ];
use MooseX::Types::Moose qw/Str/;

extends 'Reaction::UI::ViewPort::Field';

has '+value' => (isa => Str);

__PACKAGE__->meta->make_immutable;

1;