import type { SupportedGame } from "../../types/game"; import { EamuseImportInfo } from "../../types/constants"; interface EamusementUploadModalProps { isOpen: boolean; onClose: () => void; game: SupportedGame | undefined; } const EamusementUploadModal = ({ isOpen, onClose, game, }: EamusementUploadModalProps) => { 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 (
Follow the instructions below to import your data
You may or may need to be subscribed to{" "} KONAMI's e-amusement Basic and/or Premium course {" "} to view a exportable playdata history for certain games.
This feature is currently under development. Please check back later for the full implementation.