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

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;