Skip to content

Instantly share code, notes, and snippets.

@sullemanhossam
Created July 17, 2024 01:25
Show Gist options
  • Save sullemanhossam/ea5fc8b953b262686688ebc070697e8b to your computer and use it in GitHub Desktop.
Save sullemanhossam/ea5fc8b953b262686688ebc070697e8b to your computer and use it in GitHub Desktop.
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