1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-26 00:29:40 +02:00
Maybe/app/components/DS/tab.rb

13 lines
167 B
Ruby
Raw Normal View History

class DS::Tab < DesignSystemComponent
attr_reader :id, :label
def initialize(id:, label:)
@id = id
@label = label
end
def call
content
end
end