class DocumentsYearsComponent < BaseComponent attr_reader :years, :opts def initialize(current_user:, years:, opts: {}) @years = years @opts = opts end def render? years.reject(&:blank?).present? end end