aboutsummaryrefslogtreecommitdiff
path: root/static/pages/shuffle/index.js
blob: b282556d2ac248a6bb4717c08bbaf09ded114c64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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',
			})
		)
	}
}