import React from 'react' import ExifMap from './ExifMap' import styles from './Exif.module.scss' interface ExifProps { iso: string model: string fstop: string shutterspeed: string focalLength: string exposure: string gps: { latitude: string longitude: string } } export default function Exif({ exif }: { exif: ExifProps }) { const { iso, model, fstop, shutterspeed, focalLength, exposure, gps } = exif return ( ) }