JSFiddle - React, Tailwind, and code Playground

JavaScript

window.localStorage.setItem("foo", "bar");
var value = window.localStorage.getItem("foo");

var p = document.createElement("p");
p.textContent = value;
document.body.appendChild(p);