Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1235 Rev 1512
Línea 13... Línea 13...
13
 
13
 
14
import Input from '../../../UI/Input'
14
import Input from '../../../UI/Input'
Línea 15... Línea 15...
15
import ShareOption from './ShareOption'
15
import ShareOption from './ShareOption'
-
 
16
 
Línea 16... Línea 17...
16
 
17
import styles from './ShareComponent.module.scss'
17
import styles from './ShareComponent.module.scss'
18
import WidgetWrapper from 'components/widgets/WidgetLayout'
18
 
19
 
19
const StyledInput = styled(Input)`
20
const StyledInput = styled(Input)`
Línea 37... Línea 38...
37
  const onClickHandler = (postType) => {
38
  const onClickHandler = (postType) => {
38
    dispatch(openShareModal(postUrl, postType, feedType))
39
    dispatch(openShareModal(postUrl, postType, feedType))
39
  }
40
  }
Línea 40... Línea 41...
40
 
41
 
41
  return (
42
  return (
42
    <div className={styles.share__container}>
43
    <WidgetWrapper p={1}>
43
      <div className={styles.input__container}>
44
      <div className={styles.input__container}>
Línea 44... Línea 45...
44
        <Avatar src={image} className={styles.user_image} />
45
        <Avatar src={image} className={styles.user_image} />
45
 
46
 
Línea 76... Línea 77...
76
          title={labels.write}
77
          title={labels.write}
77
          color='#7FC15E'
78
          color='#7FC15E'
78
          onClick={() => onClickHandler(shareModalTypes.POST)}
79
          onClick={() => onClickHandler(shareModalTypes.POST)}
79
        />
80
        />
80
      </div>
81
      </div>
81
    </div>
82
    </WidgetWrapper>
82
  )
83
  )
83
}
84
}
Línea 84... Línea 85...
84
 
85