Skip to content

Instantly share code, notes, and snippets.

@fforres
Created April 11, 2017 03:09
Show Gist options
  • Save fforres/71fc90c283b94c85df7867d803cb905f to your computer and use it in GitHub Desktop.
Save fforres/71fc90c283b94c85df7867d803cb905f to your computer and use it in GitHub Desktop.
import template from './template.js';
const processedTemplate = template({
here: 'hello',
alsoHere: 'world',
})
export default (variables) => {
return `template with some ${variables.here} and ${variables.alsoHere}`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment