Sha256: 5c4dc04512afa6f5d008872825368aa7bd17a61bf7eb98e2b3cf16315bbea2c9
Contents?: true
Size: 964 Bytes
Versions: 3
Compression:
Stored size: 964 Bytes
Contents
module Coco module AppComponentsHelper def coco_plan_card(**, &block) render Coco::App::PlanCard.new(**), &block end def coco_faqs(**, &block) render Coco::App::Faqs.new(**), &block end def coco_contact_callout(**, &block) render Coco::App::ContactCallout.new(**), &block end def coco_plan_picker(**, &block) render Coco::App::PlanPicker.new(**), &block end def coco_plan_confirmation(**, &block) render Coco::App::PlanConfirmation.new(**), &block end def coco_app_header(*, **, &block) render Coco::App::Header.new(*, **), &block end def coco_sidebar_nav(*, **, &block) render Coco::App::SidebarNav::Navbar.new(*, **), &block end def coco_sidebar_nav_menu(*, **, &block) render Coco::App::SidebarNav::Menu.new(*, **), &block end def coco_app_layout(**, &block) render Coco::App::ApplicationLayout.new(**), &block end end end
Version data entries
3 entries across 3 versions & 1 rubygems