shakacode/react_on_rails

View on GitHub
lib/generators/react_on_rails/templates/base/base/app/controllers/hello_world_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class HelloWorldController < ApplicationController
  layout "hello_world"

  def index
    @hello_world_props = { name: "Stranger" }
  end
end