module Ariadne::Static::GenerateStatuses

def call

def call
  Ariadne::Component.descendants.sort_by(&:name).each_with_object({}) do |component, mem|
    mem[component.to_s] = component.status.to_s
  end
end