0
76
JRJose Romero
createfunctionalreactβ’β’β’
React TypeScript RecipesReact functional component with props for TypeScript
Library: react
Shortcut: react.component.functional.props.create
import React from "react";
type PropsType = {
}
const filename = (props: PropsType) => {
const {
// Deconstruct props here
} = props;
return (<div></div>);
};
export default filename;