code-editor-wishalpha
v1.1.0
Published
A React code editor by Dipika Mandal.
Maintainers
Readme
code-editor-wishalpha
A lightweight React code editor component built with TypeScript and Vite. Easily integrate a live HTML/CSS/JS editor into your React project.
Features
- Real-time HTML preview
- TypeScript-ready
- Easy integration as a React component
- Minimal and customizable UI
Installation
Install via npm:
npm install code-editor-wishalphaUsage
Import and use the editor component in your React project:
import React from "react";
import { CodeEditor } from "code-editor-wishalpha";
import "code-editor-wishalpha/dist/index.css";
export default function App() {
return <CodeEditor form={form} />;
}