# frozen_string_literal: true module Notare module Nodes class TableRow < Base attr_reader :cells def initialize super @cells = [] end def add_cell(cell) @cells << cell end end end end