Console Output
A component that mimics a terminal console, displaying scrollable text output with syntax highlighting.
Installation
npm install react-syntax-highlighter
Usage
import { ConsoleOutput } from "@/components/ui/console-output"
export function MyComponent() {
return (
<div>
<ConsoleOutput />
{/* Your other components */}
</div>
)
}