8 lines
152 B
Ruby
8 lines
152 B
Ruby
class Admin::SiteCustomization::Pages::IndexComponent < ApplicationComponent
|
|
attr_reader :pages
|
|
|
|
def initialize(pages)
|
|
@pages = pages
|
|
end
|
|
end
|