Skip to content

Instantly share code, notes, and snippets.

@codediodeio
Last active February 9, 2024 14:11
Show Gist options
  • Save codediodeio/ed900f4cf5752b54160a82bc3ab2d9ea to your computer and use it in GitHub Desktop.
Save codediodeio/ed900f4cf5752b54160a82bc3ab2d9ea to your computer and use it in GitHub Desktop.
print
export const print = (v) => {
const el = document.createElement('h3');
el.innerText = '🔵 ' + v;
document.body.appendChild(el);
}
@rick13770
Copy link

thanks, very helpful for a beginner, forced me to retrace my entire workflow inside a React framework! Man, I love your videos. Keep up the incredibly helpful and valuable work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment