import React from 'react'
import styled from 'styled-components'
import Marked from 'react-markdown'
import { getImageSrc, getImageSrcset } from '../util/getImageUrl'
export default ({ source }) => (
)
const Image = styled.img`
width: 100%;
height: auto;
`
const ImageWithSrcset = props => (
)