import { Form, Input, Button, Row, Col } from 'antd' import PropTypes from 'prop-types' // const selectores = { // consejoElectoral: { // name: "v1/consejo-electoral", // }, // } const Formulario = ({ form, onFinish, }) => { return (
{ }} >
) } export default Formulario Formulario.propTypes = { form: PropTypes.object.isRequired, onFinish: PropTypes.func.isRequired, }