/** * @prettier */ import React from 'react'; interface Props { imageURL?: string; onClose: () => void; close: () => void; } const styles = { container: { backgroundColor: 'rgba(0, 0, 0, 0.8)', padding: 20, width: '100%', height: '100%', }, image: { maxWidth: '100%', maxHeight: '100%', objectFit: 'cover', } }; export class Lightbox extends React.Component { public render() { const { imageURL } = this.props; return (
); } }