feat: enhance event management with participant selection and user search functionality
This commit is contained in:
parent
1988fc20d1
commit
3eb5b4ff1e
5 changed files with 189 additions and 69 deletions
|
@ -4,13 +4,15 @@ import Link from 'next/link';
|
|||
export function RedirectButton({
|
||||
redirectUrl,
|
||||
buttonText,
|
||||
className,
|
||||
}: {
|
||||
redirectUrl: string;
|
||||
buttonText: string;
|
||||
className?: string;
|
||||
}) {
|
||||
return (
|
||||
<Link href={redirectUrl}>
|
||||
<Button>{buttonText}</Button>
|
||||
<Button className={className}>{buttonText}</Button>
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue