import React from 'react' export default function PhotoCredit({ photographer }) { return (
Photo by{' '} {photographer.name}
) }