mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
0cde5be165
Convert React context providers to TypeScript [don't squash!] GitOrigin-RevId: d92a91798286978410956ab791d73c17c5086d86
24 lines
450 B
TypeScript
24 lines
450 B
TypeScript
import { useProjectContext } from '../../../shared/context/project-context'
|
|
|
|
export default function FileViewImage({
|
|
fileName,
|
|
fileId,
|
|
onLoad,
|
|
onError,
|
|
}: {
|
|
fileName: string
|
|
fileId: string
|
|
onLoad: () => void
|
|
onError: () => void
|
|
}) {
|
|
const { _id: projectId } = useProjectContext()
|
|
|
|
return (
|
|
<img
|
|
src={`/project/${projectId}/file/${fileId}`}
|
|
onLoad={onLoad}
|
|
onError={onError}
|
|
alt={fileName}
|
|
/>
|
|
)
|
|
}
|