// ./src/stories/QueueRow.jsx import React from 'react'; import {Link} from "./Link"; /** * A queue as described in a list. */ const QueueRow = ({ arn = undefined, itemCount = undefined, qName = undefined, url = undefined, index = undefined, ...props }) => { if (arn === undefined || arn == null) { arn = ''; } if (itemCount === undefined || itemCount === null || itemCount === '') { itemCount = '-'; } return ( <> {index} {arn} {itemCount} ) } export { QueueRow, }