9 lines
174 B
Ruby
9 lines
174 B
Ruby
# frozen_string_literal: true
|
|
|
|
class HelloWorldController < ApplicationController
|
|
layout "hello_world"
|
|
|
|
def index
|
|
@hello_world_props = { name: "Stranger" }
|
|
end
|
|
end
|