Sha256: ebf45b4d4aab4d6b1ba5c0b36a6a1c66d0298dce4f914d2f55c9d5745a0c391f

Contents?: true

Size: 363 Bytes

Versions: 5

Compression:

Stored size: 363 Bytes

Contents

# frozen_string_literal: true

module Satis
  module Tabs
    class Component < Satis::ApplicationComponent
      renders_many :tabs, Tab::Component
      attr_reader :group, :persist, :key

      def initialize(group: :main, persist: false, key: nil)
        super
        @group = group
        @persist = persist
        @key = key
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
satis-1.0.75 app/components/satis/tabs/component.rb
satis-1.0.74 app/components/satis/tabs/component.rb
satis-1.0.70 app/components/satis/tabs/component.rb
satis-1.0.69 app/components/satis/tabs/component.rb
satis-1.0.68 app/components/satis/tabs/component.rb