various improvements, edit tournament, etc

This commit is contained in:
yohlo
2025-08-24 22:56:48 -05:00
parent 936ab0ce72
commit 2b8ccf1649
25 changed files with 504 additions and 52 deletions

11
src/components/button.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { Button as MantineButton, ButtonProps as MantineButtonProps } from '@mantine/core';
import { forwardRef, ComponentPropsWithoutRef } from 'react';
type ButtonProps = MantineButtonProps & ComponentPropsWithoutRef<'button'>;
const Button = forwardRef<HTMLButtonElement, ButtonProps>((props, ref) => {
return <MantineButton fullWidth ref={ref} {...props} />;
});
Button.displayName = 'Button';
export default Button;