tickplate
tickplate copied to clipboard
Templates without extra quotes
Templates syntax as of now:
const template1 = t`Example: ${'hello'} ${'myFriend'} great ${'positions'} of Rome`;
Better syntax without extra quotes:
const template1 = t`Example: ${hello} ${myFriend} great ${positions} of Rome`;