Last active
November 16, 2023 23:35
-
-
Save Sheraff/c761272aace63f002287593f64a261bb to your computer and use it in GitHub Desktop.
beenawhile2
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
//@ts-check | |
const Component = ({ names }: { names: [string] }) => ( | |
<p>{names[0]}</p> | |
) | |
export default function App() { | |
return <div>Hello world</div> | |
} |
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
{ | |
"scripts": [ | |
"react", | |
"react-dom" | |
], | |
"styles": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment