import { FunctionComponent } from 'react' import ReactPlayer from 'react-player' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' export const AudioPreview: FunctionComponent<{ file: any }> = ({ file }) => { return (
{file.name}
Last modified:{' '} {new Date(file.lastModifiedDateTime).toLocaleString(undefined, { dateStyle: 'short', timeStyle: 'short', })}
) }