13 lines
476 B
Plaintext
13 lines
476 B
Plaintext
<%= render SidenavLinkComponent.new(
|
|
name: "Profile", path: setting_path(:profile), icon: "user",
|
|
active: current_page?(setting_path(:profile))
|
|
) %>
|
|
<%= render SidenavLinkComponent.new(
|
|
name: "Account", path: setting_path(:account), icon: "key",
|
|
active: current_page?(setting_path(:account))
|
|
) %>
|
|
<%= render SidenavLinkComponent.new(
|
|
name: "Notifications", path: setting_path(:notifications), icon: "bell",
|
|
active: current_page?(setting_path(:notifications))
|
|
) %>
|