import React from "react"; import { List } from 'immutable'; import Jumbotron from "./components/jumbotron"; const MediaBlock = ({heading, text, imageUrl, reverse}) => { const imageContainerClassName = reverse ? "ph3-m w-50-m" : "ph3-m w-50-m order-last-m"; return

{heading}

{text}

; }; export default class ValuesPreview extends React.Component { render() { const {entry, getAsset} = this.props; let image = getAsset(entry.getIn(["data", "image"])); // Bit of a nasty hack to make relative paths work as expected as a background image here if (image && !image.fileObj) { image = window.parent.location.protocol + "//" + window.parent.location.host + image; } const entryValues = entry.getIn(["data", "values"]); const values = entryValues ? entryValues.toJS() : []; return
{values.map(({text, heading, imageUrl}, i) => )}
; } }