UNPKG
kibodo
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Keyboard-only frontend framework
github.com/Dafaque/kibodo
Dafaque/kibodo
kibodo
/
example
/
Readme.ts
12 lines
(11 loc)
•
301 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
TextView
from
"../src/views/text"
;
export
default
class
Readme
extends
TextView
{
constructor
(
) {
let
lines = [];
for
(
let
i =
0
; i <
100
; i++) { lines.
push
(
"Hello, world!"
); }
super
(lines);
this
.
title
=
"Readme view example"
; } }