Method: Forma::Table#to_html

Defined in:
lib/forma/table.rb

#to_htmlObject



33
34
35
36
37
38
39
40
41
42
# File 'lib/forma/table.rb', line 33

def to_html
  el(
    'div',
    attrs: { id: @id, class: ['ff-table'] },
    children: [
      title_element,
      body_element,
    ]
  )
end