import type { SupportedGame } from "../../types/game"; interface DonerHirobaModalProps { isOpen: boolean; onClose: () => void; game: SupportedGame | undefined; renderAsCard?: () => void; } const TaikoDonderHirobaModal = ({ isOpen, onClose, game, renderAsCard, }: DonerHirobaModalProps) => { if (renderAsCard) { return (

Donder Hiroba Import

Import Play History from Donder Hiroba (Official Taiko Cabinets)

); } if (!isOpen) return null; const handleClose = () => { onClose(); }; if (game === undefined) { return "Sorry, due to some extreme error the game you're looking for doesn't seem to exist..."; } return (
{/* Backdrop */}
{/* Modal */}
{/* Header */}

Import Donder Hiroba Data

Exporting from Donder Hiroba requires slightly more setup than other methods. Follow the instructions{" "} here .

In case it isn't already clear. You will need to have played at least 1 game of Taiko on an official cabinet using an IC Card to register on Donder Hiroba.

{/* Actions */}
); }; export default TaikoDonderHirobaModal;