Just a whole lot of crap

This commit is contained in:
2025-08-14 16:36:12 -05:00
parent 66b7e42275
commit 62f6d6f279
144 changed files with 41421 additions and 2458 deletions

View File

@@ -0,0 +1,21 @@
// Mock ink-select-input for testing
const React = require("react");
const SelectInput = ({ items, onSelect, ...props }) =>
React.createElement(
"select",
{
...props,
onChange: (e) => onSelect && onSelect(items[e.target.selectedIndex]),
},
items.map((item, index) =>
React.createElement(
"option",
{ key: index, value: item.value },
item.label
)
)
);
module.exports = SelectInput;
module.exports.default = SelectInput;