Skip to content

Commit 1a574be

Browse files
committed
gotten the first render successfully
1 parent cb07e3e commit 1a574be

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "modular-openscriptjs",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "OpenScriptJs Framework - A lightweight, reactive JavaScript framework for building modern web applications",
55
"type": "module",
66
"main": "./dist/modular-openscriptjs.umd.js",

src/component/Component.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import DOMReconciler from "./DOMReconciler.js";
33
import BrokerRegistrar from "../broker/BrokerRegistrar.js";
44
import State from "../core/State.js";
55
import { container } from "../core/Container.js";
6-
import { h } from "./h.js";
6+
7+
const h = container.resolve("h");
78

89
/**
910
* Base Component Class

0 commit comments

Comments
 (0)