diff options
author | theia | 2023-02-03 17:07:17 -0500 |
---|---|---|
committer | theia | 2023-02-03 17:07:17 -0500 |
commit | c11da4dd7e082fd54562c3676dc27f4a0e8e3048 (patch) | |
tree | 669190c4035926b8e5d6d3349a0b74414eb87989 /demo/index.html | |
parent | 486de89b002b996e2fc8e0538eb7e25df2d18541 (diff) |
Private messaging working
Diffstat (limited to 'demo/index.html')
-rw-r--r-- | demo/index.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/demo/index.html b/demo/index.html index 57b3132..1f05b25 100644 --- a/demo/index.html +++ b/demo/index.html @@ -17,6 +17,7 @@ import { Name, SetMyName } from './components/name.js' import Chat from './components/chat.js' import Moderation from './components/moderation.js' + import PrivateMessaging from './components/private-messaging.js' import GraffitiVue from 'graffiti-vue' createApp() .use(GraffitiVue) @@ -24,6 +25,7 @@ .component('SetMyName', SetMyName) .component('Chat', Chat) .component('Moderation', Moderation) + .component('PrivateMessaging', PrivateMessaging) .mount('#app') </script> </head> @@ -65,9 +67,8 @@ <moderation></moderation> - <h2>Private Messages</h2> + <h2>Private Messaging</h2> - <h2>Tagging</h2> - + <private-messaging></private-messaging> </body> </html> |