20 lines
		
	
	
		
			772 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
		
			772 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								<!DOCTYPE html>
							 | 
						||
| 
								 | 
							
								<html>
							 | 
						||
| 
								 | 
							
								  <head>
							 | 
						||
| 
								 | 
							
								    <meta charset="utf-8">
							 | 
						||
| 
								 | 
							
								    <title>BotUI - Hello World</title>
							 | 
						||
| 
								 | 
							
								    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
							 | 
						||
| 
								 | 
							
								    <link rel="stylesheet" href="https://unpkg.com/botui/build/botui.min.css" />
							 | 
						||
| 
								 | 
							
								    <link rel="stylesheet" href="https://unpkg.com/botui/build/botui-theme-default.css" />
							 | 
						||
| 
								 | 
							
								    <meta name="description" content="A hello world bot. A conversational UI built using BotUI.">
							 | 
						||
| 
								 | 
							
								  </head>
							 | 
						||
| 
								 | 
							
								  <body>
							 | 
						||
| 
								 | 
							
								    <div class="botui-app-container" id="hello-world">
							 | 
						||
| 
								 | 
							
								      <bot-ui></bot-ui>
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								    <script src="https://cdn.jsdelivr.net/vue/latest/vue.min.js"></script>
							 | 
						||
| 
								 | 
							
								    <script src="https://unpkg.com/botui/build/botui.js"></script>
							 | 
						||
| 
								 | 
							
								    <script src="./hello-world.js"></script>
							 | 
						||
| 
								 | 
							
								  </body>
							 | 
						||
| 
								 | 
							
								</html>
							 |