Last active
January 3, 2022 21:41
-
-
Save adamjarling/7541cb0fa373fb352cf77a81f8304478 to your computer and use it in GitHub Desktop.
This file contains 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"; | |
interface Props { | |
foo: string; | |
} | |
const App: React.FC<Props> = ({ foo }) => <div>Foo's value is: {foo}</div>; | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment