class Ariadne::UI::Table::Cell::Component

Component responsible for rendering individual cells within a table.

def tag_name

def tag_name
  case context
  when :header
    "th"
  else
    "td"
  end
end