// @flow import React from 'react'; import { Modal } from 'modal/modal'; import Card from 'component/common/card'; import Button from 'component/button'; type Props = { doHideModal: () => void, doSignOut: () => void, }; function ModalRepost(props: Props) { const { doHideModal, doSignOut } = props; return (