Components
Loading preview...
Live code editor with multiple language support and built in JavaScript evaluation
@Scottclayton3d
npx shadcn@latest add https://21st.dev/r/lovesickfromthe6ix/code-editorimport { CodeEditor } from "@/components/ui/code-editor";
export default function DemoOne() {
return (
<div className={`rounded-lg p-14 h-screen w-screen flex flex-col text-sm ${theme === "dark" ? "bg-gray-900" : "bg-white"}`}>
<CodeEditor />
</div>
)
}