Skip to content

Instantly share code, notes, and snippets.

View mimiza's full-sized avatar

mimiza

  • Vietnam
View GitHub Profile
@WebReflection
WebReflection / todo.js
Last active April 11, 2025 10:31
Web Components, the React way, without Shadow DOM
// https://medium.com/@bdc/web-components-the-react-way-8ed5b6f4f942
const store = (() => {
let state;
return todos => {
if (todos) {
state = todos;
render("todo-list");
}
return state;
};