14 lines
366 B
14 lines
366 B
3 years ago
|
class SearchResultCaptionComponent < ViewComponent::Base
|
||
|
attr_reader :searched, :count, :item_label, :total_count, :item, :path
|
||
|
|
||
|
def initialize(searched:, count:, item_label:, total_count:, item:, path:)
|
||
|
@searched = searched
|
||
|
@count = count
|
||
|
@item_label = item_label
|
||
|
@total_count = total_count
|
||
|
@item = item
|
||
|
@path = path
|
||
|
super
|
||
|
end
|
||
|
end
|