fixed choosemany, fixed some widget stuff i broke before, renamed ordered_fields...
[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 class String is Field, which {
7   has '+value' => (isa => 'Str');
8 };
9
10 1;