Files
nairobi/app/components/admin/tenants/new_component.rb
2022-12-29 15:43:16 +01:00

14 lines
245 B
Ruby

class Admin::Tenants::NewComponent < ApplicationComponent
include Header
attr_reader :tenant
delegate :current_user, to: :helpers
def initialize(tenant)
@tenant = tenant
end
def title
t("admin.tenants.new.title")
end
end