index.tsx 132 Bytes Raw Blame History Permalink 1 2 3 4 5 import React, { type FC } from 'react'; const Foo: FC<{ title: string }> = (props) => <h4>{props.title}</h4>; export default Foo;