import React from 'react'; import { FormattedMessage } from 'react-intl'; import { openModal } from 'soapbox/actions/modals'; import { Button, Stack, Text } from 'soapbox/components/ui'; import { useAppDispatch } from 'soapbox/hooks'; const NewEventPanel = () => { const dispatch = useAppDispatch(); const createEvent = () => { dispatch(openModal('COMPOSE_EVENT')); }; return ( ); }; export default NewEventPanel;