inertia_example_controller.rb 203 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 # frozen_string_literal: true class InertiaExampleController < ApplicationController def index render inertia: 'InertiaExample', props: { name: params.fetch(:name, 'World'), } end end