UNPKG

react-planner-viewer

Version:

react-planner-viewer is a React Component for view plans builded with react-planner in 2D mode

16 lines (11 loc) 432 B
import Catalog from '../catalog'; import area from './areas/area/planner-element'; import line from './lines/wall/planner-element'; import gate from './holes/gate/planner-element'; import camera from './items/camera/planner-element'; import router from './items/router-wifi/planner-element'; let catalog = new Catalog(); [area,line,gate,camera,router].forEach((el)=>{ catalog.registerElement(el) }); export default catalog;