blob: 7bfd33e944a993b66a2fe4f1a4a9a7a4725ae6aa (
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: 'Pure Emptiness',
})
)
}
}
|