summaryrefslogtreecommitdiff
path: root/app/components/diffs/base_component.rb
blob: 9e1347d1e84fb5e502ad8c516ef5639bd9cbcf4f (plain)
1
2
3
4
5
6
7
8
9
10
# 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