From 335591a37adc11cc6a47693cb20db1bf137d72e2 Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 23:38:05 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- .../examples/hello-world-with-html/hello-world.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 js/ui/botui/examples/hello-world-with-html/hello-world.js diff --git a/js/ui/botui/examples/hello-world-with-html/hello-world.js b/js/ui/botui/examples/hello-world-with-html/hello-world.js new file mode 100644 index 0000000..8d2e051 --- /dev/null +++ b/js/ui/botui/examples/hello-world-with-html/hello-world.js @@ -0,0 +1,10 @@ +var botui = new BotUI('hello-world'); + +botui.message.add({ + content: 'Hello World from bot!
line break.link' +}); + +botui.message.add({ + human: true, + content: 'Hello World from human!' +});