diff --git a/dojo_demo2/README.md b/dojo_demo2/README.md
new file mode 100644
index 0000000..524ffa0
--- /dev/null
+++ b/dojo_demo2/README.md
@@ -0,0 +1,8 @@
+# How to run it
+
+ npx serve
+
+# Why this demo has been made?
+
+1. Well, some wise people think it's wise to use domConstruct.place or widget.placeAt with 'last' mode in the updateUI (like one) method to replace content of the widget. Well, it tends to escalate pretty quickly in zombie-copy-like duplicated way.
+2. I was bored enough to get to know how dojo toolkit works.
\ No newline at end of file
diff --git a/dojo_demo2/app.js b/dojo_demo2/app.js
new file mode 100644
index 0000000..fac6bc1
--- /dev/null
+++ b/dojo_demo2/app.js
@@ -0,0 +1,9 @@
+require([
+ 'dojo/dom',
+ 'dojo/dom-construct',
+ 'widgets/SimpleWidget.js',
+], function(dom, domConstruct, SimpleWidget) {
+ new SimpleWidget({})
+ .placeAt(
+ dom.byId('appContainer'));
+});
\ No newline at end of file
diff --git a/dojo_demo2/index.html b/dojo_demo2/index.html
new file mode 100644
index 0000000..d140328
--- /dev/null
+++ b/dojo_demo2/index.html
@@ -0,0 +1,33 @@
+
+
+
+
+ Dojo App
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/dojo_demo2/widgets/SimpleWidget.html b/dojo_demo2/widgets/SimpleWidget.html
new file mode 100644
index 0000000..688eaa0
--- /dev/null
+++ b/dojo_demo2/widgets/SimpleWidget.html
@@ -0,0 +1,16 @@
+
+ Simple Widget
+
+
+ No implementation to check how different values for domConstruct.place first, last, only and so on will behave
+