import ReactMarkdown from "react-markdown"; import Code from "./Code"; import Image from "./Image"; import Link from "./Link"; import Paragraph from "./Paragraph"; function CommandLineEntry(props) { const speed = Math.round(1 + (Number)(props.text.length / 1000)); return( { return ; }, img: ({node, ...props}) => { return }, a: ({node, ...props}) => { return }, code: ({node, ...props}) => { return }, }}/> ); } export default CommandLineEntry;