Last active
January 15, 2018 09:08
-
-
Save pankajpatel/e2c25d8cdf435cc9e6fe19e9c84a527a to your computer and use it in GitHub Desktop.
This file contains 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
module.exports = (scope) => `${scope.type ? | |
require(`${scope.type}.html.js`)(scope) : ` | |
<h1>${scope.title || '---'}<h1> | |
<div>${scope.body || '...')</div> | |
`}`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment