Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 869 Bytes

File metadata and controls

27 lines (19 loc) · 869 Bytes

bpk-component-section-list

Backpack section list component.

Installation

Check the main Readme for a complete installation guide.

Usage

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>
);

Props

Check out the full list of props on Skyscanner's design system documentation website.