react & ts
与 typescript 的最佳实践
基本
import * as React from 'react';
import { render } from 'react-dom';
// Written as a function declaration
function Heading(): React.ReactNode {
return <h1>My Website Heading</h1>
}
type Props = {
color: string;
};
const Comp: React.FC<Props> = () => <p>hello world</p>;