javascript:preact

文書の過去の版を表示しています。


Preact

はじめに – Preact Guide

// html
//<div id="app"></div>

import { h, Component, render } from 'https://esm.sh/preact';

// アプリケーションを作成する。
const app = h('h1', null, 'Hello World!');

render(app, document.getElementById("app"));

Hello World!

  • javascript/preact.1744011696.txt.gz
  • 最終更新: 2025/04/07 16:41
  • by ともやん