Hacker News new | ask | show | jobs
by JoeyJoJoJr 334 days ago
Can you point to any example projects or a todo list app that shows how modern web component can be utilized.
2 comments

Sure

    class App extends HTMLDivElement {}

    customElements.define(“main-app”, App)

    <body><main-app/></body>
    
This is the simplest web component.

More examples:

https://github.com/mdn/web-components-examples