React hello world.

This commit is contained in:
Tom Alexander
2024-01-21 17:54:00 -05:00
parent 3c19a105b1
commit b232c8d7da
8 changed files with 7120 additions and 3 deletions

4
src/index.tsx Normal file
View File

@@ -0,0 +1,4 @@
import React from "react";
import ReactDOM from "react-dom";
ReactDOM.render(<h1>Hello, world!</h1>, document.getElementById("root"));