Components / Prompt Builders
Prompt Test Panel
A split-panel interface for testing AI prompts with real-time input on the left and simulated output on the right.
Components / Prompt Builders
A split-panel interface for testing AI prompts with real-time input on the left and simulated output on the right.
"use client";
import React from "react";
export default function PromptTestPanel() {
return (
<div className="rounded-xl border border-zinc-200 dark:border-zinc-800 bg-white dark:bg-zinc-950 p-6">
<h3 className="text-sm font-semibold text-zinc-900 dark:text-zinc-100 mb-4">Prompt Testing Panel</h3>
<p className="text-sm text-zinc-500">Copy and paste this component into your project to customize.</p>
</div>
);
}react npm install react