JSFiddle - React, Tailwind, and code Playground

by graphettion

JavaScript

const peeps = {
	name: "Kyle",
  followerCount: 0
}, body = document.body

const html = `
	<div>
  	<h1>${peeps.name}</h1>
    <p>has ${peeps.followerCount} friends</p>
	</div>
`
const content = document.querySelector("body")
content.insertAdjacentHTML("beforeend", html)