UNPKG
machine-framework
Version:
latest (1.0.0)
1.0.0
self-assembling client-side web framework
github.com/DarkMarmot/machine
DarkMarmot/machine
machine-framework
/
public
/
index.html
19 lines
(13 loc)
•
331 B
HTML
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<
html
>
<
head
>
<
script
src
=
"./js/machine.umd.js"
>
</
script
>
<
link
rel
=
"stylesheet"
href
=
"./css/machine.css"
/>
</
head
>
<
body
>
<
div
id
=
"root"
>
</
div
>
</
body
>
<
script
>
const
root =
document
.
querySelector
(
'#root'
);
Machine
.
init
(root,
'./index.js'
);
</
script
>
</
html
>