Introduces components for tabbed navigation and adds a tab menu and item for non-financial contributions to the donations/contributions page.
8 lines
164 B
Ruby
8 lines
164 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MainWithTabnavComponent < ViewComponent::Base
|
|
def initialize(tabnav_partial:)
|
|
@tabnav_partial = tabnav_partial
|
|
end
|
|
end
|