Skip to content

Instantly share code, notes, and snippets.

@thulioph
Last active June 30, 2017 17:10
Show Gist options
  • Select an option

  • Save thulioph/5dfe3f664790a935be95f1cdb92d45df to your computer and use it in GitHub Desktop.

Select an option

Save thulioph/5dfe3f664790a935be95f1cdb92d45df to your computer and use it in GitHub Desktop.
Facebook Authentication
const Handlebars = window.Handlebars;
const BuildTemplate = (templateId, templateData, element) => {
let template = Handlebars.compile(templateId);
element.innerHTML = template(templateData);
};
export default BuildTemplate;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment