projectblacklight/blacklight

View on GitHub
app/components/blacklight/facet_field_no_layout_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Blacklight
  class FacetFieldNoLayoutComponent < Blacklight::Component
    renders_one :label
    renders_one :body

    def initialize(**); end

    def call
      body.to_s
    end
  end
end