import React from 'react'; import { FormattedMessage } from 'react-intl'; import { useDispatch } from 'react-redux'; import { openModal } from 'soapbox/actions/modals'; import { Button } from 'soapbox/components/ui'; const ComposeButton = () => { const dispatch = useDispatch(); const onOpenCompose = () => dispatch(openModal('COMPOSE')); return (
); }; export default ComposeButton;