Sub navigation menu (experimental) example

Default

How it looks (preview)

How to call this example

<%= render "govuk_publishing_components/components/sub_navigation_menu", {
  links: [
    {
      text: "Example Heading",
      links: [
        {
          text: "Hello world",
          href: "/hello-world"
        }
      ]
    },
    {
      text: "Another Heading",
      links: [
        {
          text: "Example Link",
          href: "/hello-world"
        },
        {
          text: "Example Link 2",
          href: "/hello-world"
        },
        {
          text: "Example Link 3",
          href: "/hello-world"
        },
        {
          text: "This is a very very very long link",
          href: "/hello-world"
        },
        {
          text: "Another link that has a lot of characters",
          href: "/hello-world"
        },
        {
          text: "Third link containing a lot of text",
          href: "/hello-world"
        }
      ]
    }
  ]
} %>