Created
July 29, 2019 10:44
-
-
Save shailen-naidoo/94d7de3b66d54730dc0b5d449a6eb7d4 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
const page = ({ title, text, dev }) => ` | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>${title}</title> | |
</head> | |
<body> | |
<p>${text}</p> | |
</body> | |
</html> | |
`; | |
module.exports = { | |
title: 'Hydrogen', | |
page, | |
data: () => ({ | |
text: 'Hydrogen: Static-site generator', | |
}), | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment