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