initial commit: esbuild, inferno
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Calendar Optimizer</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script src="./index.js" type="module"></script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,11 @@
|
||||
import { render } from "inferno";
|
||||
import { createElement } from "inferno-create-element";
|
||||
const React = {createElement};
|
||||
|
||||
function App(){
|
||||
return (
|
||||
<h1>Hello Binomial</h1>
|
||||
);
|
||||
}
|
||||
|
||||
render(<App />, document.getElementById("app"));
|
||||
Reference in New Issue
Block a user