class Avo::Resources::Items::TabGroup

def initialize(index: 0, view: nil, style: nil, **args)

def initialize(index: 0, view: nil, style: nil, **args)
  @index = index
  @items_holder = Avo::Resources::Items::Holder.new
  @view = view
  @style = style
  @args = args
  post_initialize if respond_to?(:post_initialize)
end

def turbo_frame_id

def turbo_frame_id
  "#{Avo::Resources::Items::TabGroup.to_s.parameterize} #{index}".parameterize
end