All checks were successful
continuous-integration/drone/push Build is passing
https://viewcomponent.org
8 lines
129 B
Ruby
8 lines
129 B
Ruby
# frozen_string_literal: true
|
|
|
|
class HeaderComponent < ViewComponent::Base
|
|
def initialize(title:)
|
|
@title = title
|
|
end
|
|
end
|