blob: fb49d2be1e82d39b517b08f799c1d0827ddf0973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <utils.h>
typedef struct {
String label;
} Button;
typedef struct {
String value;
} Text;
typedef struct {
String value;
} TextInput;
typedef struct {
Node *children
} ListBox;
typedef struct {
Node *children
} Stack;
|