initial
This commit is contained in:
7
app.js
Normal file
7
app.js
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import { addNumbers } from "./utils.js";
|
||||||
|
|
||||||
|
const addBox = document.createElement("input");
|
||||||
|
|
||||||
|
addBox.value = addNumbers(1, 3);
|
||||||
|
|
||||||
|
document.body.append(addBox);
|
||||||
17
index.html
Normal file
17
index.html
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<title>Hello, world!</title>
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link rel="icon" href="favicon.png">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<script type="module" src="app.js"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user