react-live-coding
v1.0.3
Published
A live React code editor and preview component built with Babel and Prism.
Maintainers
Readme
React Live Coding 🎨
A lightweight React component for live coding and previewing React JSX in real-time.
🚀 Installation
npm install react-live-coding
🧠 Usage
import React from "react";
import LiveCoding from "react-live-coding";
function App() {
return <LiveCoding defaultCode={`<h1>Hello Live Editor!</h1>`} />;
}
export default App;