所以我有一個在 Nextjs 中使用以下代碼的教程,我計劃將它從 javascript 轉移到 typescript。我是打字稿的新手,所以我已經(jīng)嘗試了我看過的大部分文章,但擴展默認的 React.FC 似乎不起作用。function Explore() { return <p className="p-4">Explore</p>;}Explore.headerTitle = "Search";export default Explore;我的組件const Home: React.FunctionComponent = () => { return ( <div> <Head> <title>Home / Twitter</title> <link rel="icon" href="/favicon.ico" /> </Head> <div> <p>Hello </p> </div> </div> );};Home.headerTitle = "Search";我的界面export interface HeaderTitle extends React.FunctionComponent { headerTitle: string;}我想向我的功能組件添加一個方法。
在 Nextjs 中擴展 React.FC 的默認行為
慕斯王
2022-12-29 10:28:24