1
2
3
4
5
6
7
8
9
10
import { html } from "https://esm.town/v/stevekrouse/html?v=5";
export default function() {
return html(`
<body
contenteditable
onLoad="document.body.innerHTML = localStorage.getItem('📓')"
oninput="localStorage.setItem('📓', document.body.innerHTML)"
></body>`);
}