Last active
February 9, 2024 14:11
-
-
Save codediodeio/ed900f4cf5752b54160a82bc3ab2d9ea to your computer and use it in GitHub Desktop.
print
This file contains 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
export const print = (v) => { | |
const el = document.createElement('h3'); | |
el.innerText = '🔵 ' + v; | |
document.body.appendChild(el); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.