First pass at CSS identifiers + test to verify they are set. For #2193
This commit is contained in:
@@ -9,7 +9,13 @@ export type NotifyButtonProps = {
|
||||
};
|
||||
|
||||
export const NotifyButton: FC<NotifyButtonProps> = ({ onClick, text }) => (
|
||||
<Button type="primary" className={`${styles.button}`} icon={<BellFilled />} onClick={onClick}>
|
||||
<Button
|
||||
type="primary"
|
||||
className={`${styles.button}`}
|
||||
icon={<BellFilled />}
|
||||
onClick={onClick}
|
||||
id="notify-button"
|
||||
>
|
||||
{text || 'Notify'}
|
||||
</Button>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user