inertia-react
Installation
SKILL.md
Inertia + React — Frontend Layer
This skill covers the React frontend of an AdonisJS + Inertia project.
For backend patterns → use the adonisjs skill alongside this one.
Always import from the AdonisJS package
// CORRECT — AdonisJS wrapper adds route-name support
import { Form, Link } from '@adonisjs/inertia/react'
// WRONG — raw Inertia, loses route-name integration
import { Form, Link } from '@inertiajs/react'
Related skills