first commit

This commit is contained in:
Tim Bendt
2024-04-19 14:08:59 -06:00
commit cf50f37ede
11 changed files with 6722 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { Button, Flex } from "wretched";
import { getAllProjects } from "../services/api-client.js";
const projects = await getAllProjects({ limit: 100 });
export const projectView = Flex.down({
children: projects.map(x => new Button({
text: x.name
})
)
});