mirror of
https://github.com/System-End/identity-vault.git
synced 2026-04-19 18:35:13 +00:00
9 lines
167 B
Ruby
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
|