Glenn Southern
Results
2
issues of
Glenn Southern
For example ``` interface Foo { foo: boolean; } interface BarProps extends Foo { bar: string; } const BarComponent: FC = (props) => {} ```
When we want to display a type that is not a prop type we do a hack like this. ``` import { AttributesType } from '../src/types'; export default function Attributes(props:...