Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3549 | Rev 3554 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3549 Rev 3553
Línea 2... Línea 2...
2
import { useSelector } from 'react-redux';
2
import { useSelector } from 'react-redux';
3
import { IconButton } from '@mui/material';
3
import { IconButton } from '@mui/material';
4
import { SendRounded } from '@mui/icons-material';
4
import { SendRounded } from '@mui/icons-material';
Línea 5... Línea 5...
5
 
5
 
6
import { Form, FormInput } from '@shared/components';
6
import { Form, FormInput } from '@shared/components';
Línea 7... Línea 7...
7
import { FormInputRating } from '.';
7
// import { FormInputRating } from '.';
8
 
8
 
Línea 9... Línea 9...
9
export function CapsuleCommentForm({ onSubmit = () => {} }) {
9
export function CapsuleCommentForm({ onSubmit = () => {} }) {
Línea 20... Línea 20...
20
          <IconButton type='submit' sx={{ padding: 0.4 }}>
20
          <IconButton type='submit' sx={{ padding: 0.4 }}>
21
            <SendRounded />
21
            <SendRounded />
22
          </IconButton>
22
          </IconButton>
23
        }
23
        }
24
      />
24
      />
25
      <FormInputRating name='rating' rules={{ required: 'Este campo es requerido' }} />
-
 
26
    </Form>
25
    </Form>
27
  );
26
  );
28
}
27
}