UNPKG

executor-fn

Version:

A lightweight function wrapper with optional state, history, undo/redo, and reset support. Use like a normal function or unlock powerful time-travel features.

8 lines (6 loc) 220 B
import React from "react"; import { createRoot } from "react-dom/client"; import App from "./App.jsx"; const container = document.getElementById("root"); const root = createRoot(container); root.render(<App />);