summaryrefslogtreecommitdiff
path: root/library/base_components.c
diff options
context:
space:
mode:
authorRoberto Esteves <contact@robertoesteves.dev>2025-07-28 09:05:23 -0300
committerRoberto Esteves <contact@robertoesteves.dev>2025-07-28 09:05:23 -0300
commit72163dc50dde4e07d9d4a17e872a302190fab0bc (patch)
tree9e550af0a411fdfe2badac6b7c7edbb7a767d9f1 /library/base_components.c
init commitHEADmaster
Diffstat (limited to 'library/base_components.c')
-rw-r--r--library/base_components.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/library/base_components.c b/library/base_components.c
new file mode 100644
index 0000000..fb49d2b
--- /dev/null
+++ b/library/base_components.c
@@ -0,0 +1,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;