Files
grecia/app/components/dashboard/resources_component.rb
taitus 048c8ce917 Move dashboard resources partial to a component
We're renaming the HTML class (and removing the id attribute, which was
only used in tests) in order to follow our naming conventions.
2025-08-27 17:40:45 +02:00

8 lines
178 B
Ruby

class Dashboard::ResourcesComponent < ApplicationComponent
attr_reader :active_resources
def initialize(active_resources)
@active_resources = active_resources
end
end