import React from 'react'; import styled from 'styled-components'; import { Button, Intent } from '@blueprintjs/core'; import { FormattedMessage as T, EmptyStatus } from '../../../components'; import withDialogActions from 'containers/Dialog/withDialogActions'; import { compose } from 'utils'; function BranchesEmptyStatus({ // #withDialogActions openDialog, }) { // Handle activate action branch. const handleActivateBranch = () => { openDialog('branch-activate', {}); }; return ( } /> ); } export default compose(withDialogActions)(BranchesEmptyStatus);