mirador
Version:
An open-source, web-based 'multi-up' viewer that supports zoom-pan-rotate functionality, ability to display/compare simple images, and images with annotations.
18 lines (15 loc) • 308 B
JSX
import PropTypes from 'prop-types';
import Typography from '@mui/material/Typography';
/** */
export function SidebarIndexItem({ label }) {
return (
<Typography
variant="body1"
>
{label}
</Typography>
);
}
SidebarIndexItem.propTypes = {
label: PropTypes.string.isRequired,
};