Skip to content

Instantly share code, notes, and snippets.

@baranovxyz
Created May 24, 2020 18:31
Show Gist options
  • Save baranovxyz/065588458ef39ccc845c4035a766d152 to your computer and use it in GitHub Desktop.
Save baranovxyz/065588458ef39ccc845c4035a766d152 to your computer and use it in GitHub Desktop.
function Note(note) {
const { title, text } = note;
return `
<div class='Note'>
<div class='Note-Title'>
${title}
</div>
<div class='Note-Text'>
${text}
</div>
</div>
`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment