Skip to content

Instantly share code, notes, and snippets.

@gaspard
Created April 6, 2016 14:06
Show Gist options
  • Save gaspard/99c0d157131c63961aa583759df5636f to your computer and use it in GitHub Desktop.
Save gaspard/99c0d157131c63961aa583759df5636f to your computer and use it in GitHub Desktop.
import { Context, Renderable, RenderText } from '../types'
export const render = function
( ctx : Context
, sub1 : Renderable<RenderText>
, sub2 : Renderable<RenderText>
) : RenderText {
const res1 = sub1 ( ctx ).text
const res2 = sub2 ( ctx ).text
return { text: `${res1} ${res2}` }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment