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
/
Error.ts
9 lines
(8 loc)
•
226 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
View
from
"../src/views/view"
;
export
default
class
ErrorView
extends
View
{
constructor
(
) {
super
();
this
.
error
=
"Something unexpected happened"
;
this
.
title
=
"Error view example"
; } }