aboutsummaryrefslogtreecommitdiff
path: root/static/pages/shuffle/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/pages/shuffle/index.js')
-rw-r--r--static/pages/shuffle/index.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/static/pages/shuffle/index.js b/static/pages/shuffle/index.js
new file mode 100644
index 0000000..b282556
--- /dev/null
+++ b/static/pages/shuffle/index.js
@@ -0,0 +1,17 @@
+import * as sfw from 'sfw';
+const { Div } = sfw.element.native;
+
+const css = await sfw.css(import.meta.url, './index.css');
+
+export default class ShuffleView extends sfw.element.Container {
+ constructor() {
+ super({ css });
+
+ this.body.append(
+ Div.new({
+ id: 'container',
+ innerText: 'shuffle',
+ })
+ )
+ }
+}