Class: Irelia::Navigation::Preview

Inherits:
ComponentPreview
  • Object
show all
Defined in:
app/components/irelia/navigation/preview.rb

Instance Method Summary collapse

Instance Method Details

#defaultObject

You can specify the container class for the default template self.container_class = “w-1/2 border border-gray-300”



7
8
9
10
11
12
13
# File 'app/components/irelia/navigation/preview.rb', line 7

def default
  irelia_navigation do |nav|
    nav.with_link(active: true) { "Profile" }
    nav.with_link { "Messages" }
    nav.with_link { "Gallery" }
  end
end