UNPKG

dbl-components

Version:

Framework based on bootstrap 5

23 lines (15 loc) 317 B
import React from "react"; import Field from "./field"; export default class HiddenField extends Field { static propTypes = { ...Field.propTypes } static jsClass = 'HiddenField'; get type() { return 'hidden'; } // Renders render() { return this.inputNode; } }