import React from 'react';
import List, { Item } from 'terra-list';
import { Placeholder } from '@cerner/terra-docs';
import classNames from 'classnames/bind';
import styles from './ListDocCommon.module.scss';

const cx = classNames.bind(styles);

const ListExample = () => (
  <List>
    <Item key="123">
      <Placeholder title="Item 0" className={cx('placeholder')} />
    </Item>
    <Item key="124">
      <Placeholder title="Item 1" className={cx('placeholder')} />
    </Item>
    <Item key="125">
      <Placeholder title="Item 2" className={cx('placeholder')} />
    </Item>
  </List>
);

export default ListExample;
