Skip to content

Commit 6acb3eb

Browse files
committed
added temp groups waiting page
1 parent 2a86faf commit 6acb3eb

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

public/modules/breakout/groups.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
</br>
6+
</br>
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

Comments
 (0)