mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
12 lines
159 B
Ruby
12 lines
159 B
Ruby
|
class Tabs::PanelComponent < ViewComponent::Base
|
||
|
attr_reader :tab_id
|
||
|
|
||
|
def initialize(tab_id:)
|
||
|
@tab_id = tab_id
|
||
|
end
|
||
|
|
||
|
def call
|
||
|
content
|
||
|
end
|
||
|
end
|