import React from 'react'; import PropTypes from 'prop-types'; import { Session } from 'meteor/session'; import { defineMessages, injectIntl } from 'react-intl'; import injectWbResizeEvent from '/imports/ui/components/presentation/resize-wrapper/component'; import Button from '/imports/ui/components/button/component'; import { styles } from './styles'; const intlMessages = defineMessages({ hideNoteLabel: { id: 'app.note.hideNoteLabel', description: 'Label for hiding note button', }, title: { id: 'app.note.title', description: 'Title for the shared notes', }, }); const propTypes = { url: PropTypes.string.isRequired, intl: PropTypes.shape({ formatMessage: PropTypes.func.isRequired, }).isRequired, }; const defaultProps = { }; const Note = (props) => { const { url, intl, } = props; return (