Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 536 Rev 550
Línea 3... Línea 3...
3
import { addNotification } from '../../redux/notification/notification.actions'
3
import { addNotification } from '../../redux/notification/notification.actions'
4
import { useDispatch, useSelector } from 'react-redux'
4
import { useDispatch, useSelector } from 'react-redux'
5
import EditIcon from '@mui/icons-material/Edit'
5
import EditIcon from '@mui/icons-material/Edit'
6
import DeleteIcon from '@mui/icons-material/Delete'
6
import DeleteIcon from '@mui/icons-material/Delete'
Línea 7... Línea -...
7
 
-
 
8
import StyledContainer from '../widgets/WidgetLayout'
7
 
9
import { QuestionStats } from './QuestionCard'
8
import { QuestionStats } from './QuestionCard'
10
import { CommentForm, CommentsList } from '../feed/CommentSection'
-
 
11
import ReactionsButton from '../UI/buttons/ReactionsButton'
9
import { CommentForm, CommentsList } from '../feed/CommentSection'
-
 
10
import Paraphrase from '../UI/Paraphrase'
-
 
11
import StyledContainer from '../widgets/WidgetLayout'
-
 
12
import ReactionsButton from '../UI/buttons/ReactionsButton'
-
 
13
 
-
 
14
const StyledForm = styled(CommentForm)`
-
 
15
  margin: 0 5px;
Línea 12... Línea 16...
12
import Paraphrase from '../UI/Paraphrase'
16
`
13
 
17
 
14
const AnswerCard = ({
18
const AnswerCard = ({
15
  time_elapsed = '',
19
  time_elapsed = '',
Línea 146... Línea 150...
146
              <DeleteIcon />
150
              <DeleteIcon />
147
              {labels.delete}
151
              {labels.delete}
148
            </button>
152
            </button>
149
          )}
153
          )}
150
        </StyledContainer.Actions>
154
        </StyledContainer.Actions>
151
        <CommentForm onSubmit={addComment} />
155
        <StyledForm image={user_image} onSubmit={addComment} />
152
        <CommentsList comments={comments} onDelete={deleteComment} />
156
        <CommentsList comments={comments} onDelete={deleteComment} />
153
      </StyledContainer>
157
      </StyledContainer>
154
    </>
158
    </>
155
  )
159
  )
156
}
160
}