Group
Accessible Group component that is used to identify a set of user interface objects. It implements the WAI-ARIA Group Role.
#Installation
npm install reakit
Learn more in Get started.
#Usage
import { Group } from "reakit/Group";
import { Button } from "reakit/Button";
function Example() {
return (
<Group>
<Button>Button1</Button>
<Button>Button2</Button>
<Button>Button3</Button>
</Group>
);
}
#Accessibility
Grouphas rolegroup.
Learn more in Accessibility.
#Composition
Groupuses Role and is used by CompositeGroup and FormGroup.
Learn more in Composition.
#Props
#Group
No props to show