import * as React from "react"; export interface CardStartProps { startEmulator: () => void; } export class CardStart extends React.Component { public render() { return (
Start Windows 95
Hit ESC to lock or unlock your mouse
); } }