You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// GoodexporttypeAlertProps={/** * Type of the alert. * @default 'informational' */type?: 'positive'|'warning'|'negative'|'informational';
...
// Bad (no comment)exporttypeAlertProps={type?: 'positive'|'warning'|'negative'|'informational';
...
Add description and example how to use the component
// Good/** * A small box to quickly grab user attention and communicate a brief message. * @example * <Alert>This is a basic alert.</Alert> */exportconstAlert=(props: AlertProps)=>{
...
// Bad (no comments)exportconstAlert=(props: AlertProps)=>{
...
// Bad (no example)/** * A small box to quickly grab user attention and communicate a brief message. */exportconstAlert=(props: AlertProps)=>{
...
Use classnames object syntax for conditional classes