interface UserScript { name: string; url: string; } interface EagleUserscriptModalProps { isOpen: boolean; onClose: () => void; mainGameName: string; userPage: string; importPage: string; scripts: UserScript[]; } interface EagleUserscriptCardProps { mainGameName: string; onClick: () => void; } export const EagleUserscriptCard = ({ mainGameName, onClick }: EagleUserscriptCardProps) => { return (
Import playdata from cabinets on the Eagle network
Follow the instructions below to import your data
You will need your ACCESS CODE to register on Eagle for the first time!
Do this by tapping your Amusement IC card at any machine on the Eagle network and copying
down the code displayed on the screen.
This is likely not the same code as the one on the back of your card.
{scripts.map(userscript => ( {userscript.name} ))}