Sha256: 4dae3c604a15ffa16bea84e57f1dcfe15faf54c829004f33240587ecc0c8401a

Contents?: true

Size: 328 Bytes

Versions: 2

Compression:

Stored size: 328 Bytes

Contents

# frozen_string_literal: true

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
satis-1.0.67 app/components/satis/tabs/component.rb
satis-1.0.66 app/components/satis/tabs/component.rb