# frozen_string_literal: true module El # represent the tbody tag class Tbody < Element def initialize(**options) super('tbody', **options) end end end