mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-03 15:58:20 +00:00
11 lines
276 B
Ruby
11 lines
276 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Diffs
|
|
class BaseComponent < ViewComponent::Base
|
|
# To make converting the partials to components easier,
|
|
# we delegate all missing methods to the helpers,
|
|
# where they probably are.
|
|
delegate_missing_to :helpers
|
|
end
|
|
end
|