import { Head, Link } from '@inertiajs/react' import <%= inertia_component_name %> from './<%= inertia_component_name %>' export default function Index({ <%= plural_table_name %>, flash }) { return ( <> {flash.notice &&

{flash.notice}

}

<%= human_name.pluralize %>

{<%= plural_table_name %>.map((<%= singular_table_name %>) => (
.id}> <<%= inertia_component_name %> <%= singular_table_name %>={<%= singular_table_name %>} />

`}>Show this <%= human_name.downcase %>

))}
New <%= human_name.downcase %> ) }