import React from 'react' import { translate } from 'react-i18next' import { BtnSwitch } from 'tracim_lib' import { ROLE } from '../../helper.js' export const Notification = props => { const getRole = role => ROLE.find(r => r.name === role) return (
Espace de Travail & Notification
NYI
{ props.workspaceList.map(ws => )}
Espace de travail Role Notification
{ws.title}
{props.t(getRole(ws.role).translationKey)}
props.onChangeSubscriptionNotif(ws.id, !ws.notif)} />
) } export default translate()(Notification)