UNPKG

@zqui/react-terminal

Version:

A react component that renders a bash-like terminal.

16 lines (12 loc) 240 B
import React from "react"; export type ObjExchange = { command: string; output: string | React.JSX.Element; prompt: string; pwd: string; } type IExchange = | ObjExchange | string | React.JSX.Element; export default IExchange;