Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3719 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3719 Rev 3746
Línea 7... Línea 7...
7
 
7
 
8
export function CommentForm({ onSubmit = () => {} }) {
8
export function CommentForm({ onSubmit = () => {} }) {
Línea 9... Línea 9...
9
  const labels = useSelector(({ intl }) => intl.labels);
9
  const labels = useSelector(({ intl }) => intl.labels);
10
 
10
 
11
  return (
11
  return (
12
    <Form onSubmit={onSubmit}>
12
    <Form onSubmit={onSubmit} defaultValues={{ comment: '' }} reset>
13
      <FormInput
13
      <FormInput
14
        name='comment'
14
        name='comment'
15
        placeholder={labels.write_a_comment}
15
        placeholder={labels.write_a_comment}