sul-dlss/argo

View on GitHub
app/components/show/item/structure/file_hierarchy_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Show
  module Item
    module Structure
      class FileHierarchyComponent < ViewComponent::Base
        # @params [String] view_token
        def initialize(view_token:)
          @view_token = view_token
        end

        attr_reader :view_token
      end
    end
  end
end