first commit

This commit is contained in:
2025-10-10 11:30:12 +02:00
commit 3aaadfdb62
10 changed files with 10214 additions and 0 deletions

10
source/app.js Normal file
View File

@@ -0,0 +1,10 @@
import React from 'react';
import {Text} from 'ink';
export default function App({name = 'Stranger'}) {
return (
<Text>
Hello, <Text color="green">{name}</Text>
</Text>
);
}