import { forwardRef } from "react"; import classNames from "classnames"; import type { Ref, HTMLAttributes } from "react"; import styles from "./Terminal.module.css"; type Props = HTMLAttributes; // a DOS-style terminal box with dynamic text const Terminal = forwardRef(function Terminal({ className, ...rest }: Props, ref: Ref) { return (
); }); export default Terminal;