mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
13 lines
170 B
Ruby
13 lines
170 B
Ruby
|
class TabComponent < ViewComponent::Base
|
||
|
attr_reader :id, :label
|
||
|
|
||
|
def initialize(id:, label:)
|
||
|
@id = id
|
||
|
@label = label
|
||
|
end
|
||
|
|
||
|
def call
|
||
|
content
|
||
|
end
|
||
|
end
|