Add 'Hello!' message to Button component

This commit is contained in:
Matiss Janis Aboltins
2026-05-09 17:38:29 +01:00
committed by GitHub
parent 2e12bc7455
commit 2ae72b5e4b

View File

@@ -173,7 +173,7 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
: cx(defaultButtonClassName, className)
}
>
{children}
Hello! {children}
</ReactAriaButton>
);
},