Files
grecia/app/components/admin/header.rb
taitus 9fe24aec9d Add sdg manager section to admin
Allow a user to become an sdg manager
2020-12-16 13:16:45 +01:00

14 lines
176 B
Ruby

module Admin::Header
extend ActiveSupport::Concern
def header(options: {})
provide(:title) do
title
end
tag.h2 options do
title
end
end
end