require_relative '../helpers/indented_grid' Coprl::Presenters.define(:hidden_fields) do helpers Demo::Helpers::IndentedGrid attach :top_nav attach :component_drawer page_title 'Hidden' indented_grid do form do hidden_field name: :idoit_id do value 'do it!' end end attach :code, file: __FILE__ end end