Created
April 11, 2017 03:09
-
-
Save fforres/71fc90c283b94c85df7867d803cb905f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import template from './template.js'; | |
const processedTemplate = template({ | |
here: 'hello', | |
alsoHere: 'world', | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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