module Admin::HomeHelper
  def active_class(url_pat = nil)
    if url_pat.to_s == @active_menu
      "bg-slate-600 text-gray-200 "
    else
      "text-gray-400 "
    end
  end
end
