import { Inertia } from "@inertiajs/inertia"; import qs from "qs"; const PageLink = ({ active, label, url, params }) => { const className = `mr-1 mb-1 px-4 py-3 border border-solid border-gray-300 rounded text-sm bg-white hover:bg-white ${ active && "focus:outline-none focus:border-gray-700 focus:text-gray-700 border-gray-600 bg-gray-600 text-white hover:bg-gray-400" }`; const onClick = () => { Inertia.get( `${url}&${qs.stringify(params)}`, {}, { replace: true, // preserveState: true, } ); }; return (