import { h, Ref } from 'preact'; import styles from './css/Screen.module.css'; /** * Screen properties */ export interface ScreenProps { screenRef: Ref; } /** * Styled canvas element that the Apple II display is * rendered to by VideoModes. * * @param screen Canvas element reference * @returns */ export const Screen = ({ screenRef }: ScreenProps) => { return (
); };