Rev 5370 | Rev 5423 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import React from "react";import ReactDOM from "react-dom";import CompanySizesView from "./view/CompanySizesView";ReactDOM.render(<CompanySizesViewurlsVar={urlsVar}title="Tamaños de empresa"headers={[{ key: "name", label: "Nombre", isSorteable: true },{ key: "minimum_no_of_employee", label: "Mínimo", isSorteable: true },{ key: "maximum_no_of_employee", label: "Máximo", isSorteable: true },{ key: "status", label: "Activo", isSorteable: false },{ key: "actions", label: "Acciones", isSorteable: false }]}/>,document.getElementById("company-sizes"));