Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
369 B

class ViewResultComponent < ViewComponent::Base
attr_reader :searched, :count, :item_label, :total_count, :item, :request
def initialize(searched:, count:, item_label:, total_count:, item:, request:)
@searched = searched
@count = count
@item_label = item_label
@total_count = total_count
@item = item
@request = request
super
end
end