import React from 'react'; import { DistTags } from '../../../types/packageMeta'; import ListItem from '../../muiComponents/ListItem'; import List from '../../muiComponents/List'; import { Spacer, ListItemText } from './styles'; interface Props { tags: DistTags; } const VersionsTagList: React.FC = ({ tags }) => ( {Object.keys(tags) .reverse() .map(tag => ( {tag} {tags[tag]} ))} ); export default VersionsTagList;