import React, { useState } from 'react' import { router, useForm, usePage } from '@inertiajs/react' import StudioLayout from '../../Layouts/StudioLayout' function SearchResultList({ items, onSelect, emptyLabel = 'No matches yet.' }) { if (!Array.isArray(items) || items.length === 0) { return