Submit social housing lettings and sales data (CORE)
 
 
 
 

9 lines
171 B

class DocumentListComponent < ViewComponent::Base
attr_reader :items, :label
def initialize(items:, label:)
@items = items
@label = label
super
end
end