Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1507 Rev 1650
Línea 6... Línea 6...
6
import DeleteIcon from '@mui/icons-material/Delete'
6
import DeleteIcon from '@mui/icons-material/Delete'
7
import ChatOutlinedIcon from '@mui/icons-material/ChatOutlined'
7
import ChatOutlinedIcon from '@mui/icons-material/ChatOutlined'
8
import styled from 'styled-components'
8
import styled from 'styled-components'
Línea 9... Línea 9...
9
 
9
 
10
import { QuestionStats } from './QuestionCard'
-
 
11
import { CommentForm, CommentsList } from '../feed/CommentSection'
10
import { QuestionStats } from './QuestionCard'
12
import Paraphrase from '../UI/Paraphrase'
11
import Paraphrase from '../UI/Paraphrase'
13
import WidgetWrapper from '../widgets/WidgetLayout'
12
import WidgetWrapper from '../widgets/WidgetLayout'
-
 
13
import ReactionsButton from '../UI/buttons/ReactionsButton'
-
 
14
import CommentForm from '../dashboard/linkedin/comments/comment-form'
Línea 14... Línea 15...
14
import ReactionsButton from '../UI/buttons/ReactionsButton'
15
import CommentsList from '../dashboard/linkedin/comments/comment-list'
15
 
16
 
16
const StyledForm = styled(CommentForm)`
17
const StyledForm = styled(CommentForm)`
17
  border: 1px solid lightgray;
18
  border: 1px solid lightgray;
Línea 157... Línea 158...
157
              <DeleteIcon />
158
              <DeleteIcon />
158
              {labels.delete}
159
              {labels.delete}
159
            </button>
160
            </button>
160
          )}
161
          )}
161
        </WidgetWrapper.Actions>
162
        </WidgetWrapper.Actions>
-
 
163
 
162
        <div className='px-1 pb-1'>
164
        <div className='px-1 pb-1'>
163
          <StyledForm image={user_image} onSubmit={addComment} />
165
          <StyledForm image={user_image} onSubmit={addComment} />
164
          {showComments && (
166
          {showComments && (
165
            <CommentsList comments={comments} onDelete={deleteComment} />
167
            <CommentsList comments={comments} onDelete={deleteComment} />
166
          )}
168
          )}