sul-dlss/SearchWorks

View on GitHub
app/components/record/collection/marc/metadata_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Record
  module Collection
    module Marc
      class MetadataComponent < Blacklight::Component
        def initialize(document:)
          @document = document
          super()
        end

        attr_reader :document
      end
    end
  end
end