# frozen_string_literal: true

module Forms
  class DividerComponent < ViewComponent::Base
    def initialize(title)
      @title = title
    end
  end
end
