module ViewComponent::AbstractGenerator

def stimulus_controller

def stimulus_controller
  if options["stimulus"]
    File.join(destination_directory, destination_file_name)
      .sub("#{component_path}/", "")
      .tr("_", "-")
      .gsub("/", "--")
  end
end