Skip to content

Instantly share code, notes, and snippets.

@adamar
adamar / index.html
Created March 28, 2025 04:20
Basic React Hello world with ESM imports
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hello World React</title>
<script type="module">
import React from "https://esm.sh/[email protected]";
import ReactDOM from "https://esm.sh/[email protected]/client";