Created
July 17, 2024 01:25
-
-
Save sullemanhossam/ea5fc8b953b262686688ebc070697e8b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import {Text} from 'ink'; | |
import {GradientText} from "battleship-out" | |
type Props = { | |
name: string | undefined; | |
}; | |
export default function App({name = 'Stranger'}: Props) { | |
return ( | |
<> | |
<GradientText /> | |
<Text> | |
Hello, <Text color="green">{name}</Text> | |
</Text> | |
</> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment