import { Link } from '@inertiajs/react'; import React, { PropsWithChildren } from 'react'; interface Props { as?: string; href?: string; } export default function DropdownLink({ as, href, children, }: PropsWithChildren) { return (
{(() => { switch (as) { case 'button': return ( ); case 'a': return ( {children} ); default: return ( {children} ); } })()}
); }