import { Link } from '@inertiajs/inertia-react'; const PageLink = ({ active, label, url }) => { 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-indigo-700 focus:text-indigo-700 border-indigo-600 bg-indigo-600 text-white hover:bg-indigo-400'}` return ( ); }; // Previous, if on first page // Next, if on last page // and dots, if exists (...) const PageInactive = ({ label }) => { const className = 'mr-1 mb-1 px-4 py-3 text-sm border rounded border-solid border-gray-300 text-gray' return (
); }; export default ({ links = [] }) => { // dont render, if there's only 1 page (previous, 1, next) if (links.length === 3) return null; return (
{links.map(({ active, label, url }) => { return url === null ? ( ) : ( ); })}
); };