Files
nairobi/app/helpers/link_list_helper.rb
Javi Martín fdfdbcbd0d Add and apply Style/ArgumentsForwarding rule
We were using generic names like `args` and `options` which don't really
add anything to `*` or `**` because Ruby required us to.

That's no longer the case in Ruby 3.2, so we can simplify the code a
bit.
2024-04-11 17:59:40 +02:00

6 lines
103 B
Ruby

module LinkListHelper
def link_list(*, **)
render Shared::LinkListComponent.new(*, **)
end
end