blob: f5bc59cb314678f48e1d58fc757ab2393bc53802 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# frozen_string_literal: true
module Diffs
class BaseComponent < ViewComponent::Base
warn_on_deprecated_slot_setter
# 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
|