@jaorow/floor-plan-editor
v0.1.4
Published
Room Mapper Lib
Readme
Room Mapper Lib
This is a basic lib that renders a canvas in which you can map out floor plans...
a bit of a weird thing to publish to npm but it was the easiest way to import it into my other app...
Usage
import { FloorPlanEditor } from '@jaorow/floor-plan-editor';
import '@jaorow/floor-plan-editor/style.css';
function MyPage() {
return (
<div className="p-8">
<FloorPlanEditor defaultUnit="meters" canvasWidth={1000} canvasHeight={700} />
</div>
);
}