trying to take out the create room object

This commit is contained in:
Arjun Patel
2022-01-16 15:57:10 -08:00
parent 7033c79ebb
commit 0b8d3c39ca
7 changed files with 40 additions and 16 deletions
+11
View File
@@ -0,0 +1,11 @@
export default class CreateRoom {
showModal: boolean;
meetLink?: string;
constructor() {
this.showModal = true;
this.meetLink = "";
}
}