Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 1x | import React from "react"; import { Grid, Paper, Typography, List, ListItem } from "@mui/material"; import { OrgCollection } from "../types"; import { Link } from "react-router-dom"; interface Props { collections?: OrgCollection[]; } const OrganisationDictionaries: React.FC<Props> = ({ collections }) => { return ( <Grid item xs={12} component="div"> <Paper className="fieldsetParent"> <fieldset> <Typography component="legend" variant="h5" gutterBottom> Dictionaries </Typography> <List> {collections?.length ? ( collections.map(c => ( <ListItem key={c.id}> <Link to={c.url}>{c.name}</Link> </ListItem> )) ) : ( <ListItem>No dictionaries found!</ListItem> )} </List> </fieldset> </Paper> </Grid> ); }; export default OrganisationDictionaries; |