1# frozen_string_literal: true
2
3# This module has the necessary methods to store
4# hints for menus. Hints are elements displayed
5# when the user hover the menu item.
6module Sidebars
7  module Concerns
8    module HasHint
9      def show_hint?
10        false
11      end
12
13      def hint_html_options
14        {}
15      end
16    end
17  end
18end
19