identity-vault/app/components/home_button.rb
2025-09-02 13:53:47 -04:00

9 lines
167 B
Ruby

# frozen_string_literal: true
class Components::HomeButton < Components::Base
def view_template
a href: root_path do
"← back to home"
end
end
end