import React from 'react'; import PropTypes from 'prop-types'; import { styled } from '@storybook/theming'; import NotificationItem, { NotificationItemSpacer } from './NotificationItem'; const List = styled.div({ '> * + *': { marginTop: 10, }, '&:empty': { display: 'none', }, }); export function NotificationListSpacer({ notifications }) { return ( {notifications.map(notification => ( ))} ); } NotificationListSpacer.propTypes = { notifications: PropTypes.arrayOf(PropTypes.shape({ id: PropTypes.string.isRequired }).isRequired) .isRequired, }; export default function NotificationList({ notifications }) { return ( {notifications.map(notification => ( ))} ); } NotificationList.propTypes = { notifications: PropTypes.arrayOf(PropTypes.shape({ id: PropTypes.string.isRequired }).isRequired) .isRequired, };