An example of what `tsrfc` returns: ```ts import React from 'react' interface Props { } export default function Test(): Props { return ( <div> </div> ) } ``` I think the return type is specified wrong here. It should be `ReactElement` instead of `Props`. Will do a PR.