Guest User

Untitled

a guest
Jun 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <FormItem {...formItemLayout} label="Content">
  2. {getFieldDecorator('longDescription', {
  3. initialValue: article.longDescription || ' ' ,
  4. valuePropName: 'model',
  5. rules: [
  6. {
  7. required: true,
  8. message: 'Long description is required',
  9. },
  10. ],
  11. })(
  12. <FroalaEditor
  13. tag='textarea'
  14. />
  15. )}
  16. </FormItem>
Add Comment
Please, Sign In to add comment