DEV Community

Discussion on: A Beginners Guide to using Typescript with React

Collapse
 
bsgreenb profile image
Ben Greenberg 🧢

The React TypeScript cheat sheet recommends doing them using the shorter version of Ben's syntax:

type AppProps = { message: string }; /* could also use interface */
const App = ({ message }: AppProps) => {message};

github.com/typescript-cheatsheets/...