We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a86faf commit 6acb3ebCopy full SHA for 6acb3eb
1 file changed
public/modules/breakout/groups.js
@@ -0,0 +1,20 @@
1
+modules["breakout/groups"] = class {
2
+ html = `
3
+ You're currently in the waiting room. Please wait for the lesson owner to place you in a team!
4
+ </br>
5
6
7
+ This page will look a lot nicer soon...
8
+ `;
9
+ css = {
10
+
11
+ };
12
13
+ js = async (frame, extra = {}) => {
14
+ frame.style.display = "flex";
15
+ frame.style.height = "100%";
16
+ frame.style.padding = "12px";
17
+ frame.style.justifyContent = "center";
18
+ frame.style.alignItems = "center";
19
+ }
20
+}
0 commit comments