X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Frounds%2FSeedDialog.js;fp=resources%2Fjs%2Fcomponents%2Frounds%2FSeedDialog.js;h=c4db7d3377da70beaeb04a7c680fb09fa24ee4c0;hb=a907ef7c6676fef11f42933b2d79bdd496b20122;hp=0000000000000000000000000000000000000000;hpb=06fd14404164904304a20e2280037e83299247fa;p=alttp.git diff --git a/resources/js/components/rounds/SeedDialog.js b/resources/js/components/rounds/SeedDialog.js new file mode 100644 index 0000000..c4db7d3 --- /dev/null +++ b/resources/js/components/rounds/SeedDialog.js @@ -0,0 +1,37 @@ +import PropTypes from 'prop-types'; +import React from 'react'; +import { Modal } from 'react-bootstrap'; +import { withTranslation } from 'react-i18next'; + +import SeedForm from './SeedForm'; +import i18n from '../../i18n'; + +const SeedDialog = ({ + onHide, + participant, + round, + show, +}) => + + + + {i18n.t('rounds.setSeed')} + + + +; + +SeedDialog.propTypes = { + onHide: PropTypes.func, + round: PropTypes.shape({ + }), + show: PropTypes.bool, + tournament: PropTypes.shape({ + }), +}; + +export default withTranslation()(SeedDialog);