module ViewComponent::Instrumentation

def render_in(view_context, &block)

def render_in(view_context, &block)
  ActiveSupport::Notifications.instrument(
    notification_name,
    {
      name: self.class.name,
      identifier: self.class.source_location
    }
  ) do
    super
  end
end