Reach UI is an accessible foundation for React applications and design systems.
The three equally important goals are to be:
- Accessible
- Composable
- Stylable
export class UserList extends React.Component { | |
state = { count: 0 }; | |
handleClick = (item) => { | |
setTimeout(() => { | |
console.log(`You clicked ${this.props.group} ${this.state.count} times`); | |
}, 3000); | |
}; | |
render() { |