Bluemo's Brain

Search

Search IconIcon to open search

UserScriptでpreactを使う

Last updated Unknown Edit Source

    script.js

    1
    2
    3
    4
    5
    6
    
    import {html, render} from 'https://scrapbox.io/api/code/programming-notes/htm@3.0.4%2Fpreact/script.js';
    
    (() => {
    	const root = document.getElementById('app-container');
    	render(html`<p>Hello</p>`, root);
    })()
    
    • 最低限のrenderはこんな感じかな

      • スタイル加えるとこうなる
        • image
      • preact、後で自分でbundleしよう
    • JSX記法のところは「html``」で括る必要がある感じか