Backpack section list component.
Check the main Readme for a complete installation guide.
import BpkSectionList, { BpkSectionListSection, BpkSectionListItem } from '@skyscanner/backpack-web/bpk-component-section-list';
export default () => (
<BpkSectionList>
<BpkSectionListSection headerText="Cities">
<BpkSectionListItem>Tokyo</BpkSectionListItem>
<BpkSectionListItem onClick={() => {}}>Rio de Janeiro</BpkSectionListItem>
<BpkSectionListItem href="#">London</BpkSectionListItem>
</BpkSectionListSection>
</BpkSectionList>
);
Check out the full list of props on Skyscanner's design system documentation website.