0
在我的應用程序中嘗試實施react-tab-panel時出現錯誤。我按照安裝說明無濟於事。使用反應選項卡時出現'未知道具'錯誤
這是正在產生錯誤的代碼:
import React from 'react';
import TabPanel from 'react-tab-panel'
const tabStyle = (props) => {
const baseStyle = {
padding: 10
}
return Object.assign(
baseStyle,
props.active?
{ color: 'red' }:
{ background: 'gray' }
)
}
const ExperimentDetail = ({ tabStyle }) => (
<div className="experiment-detail">
<TabPanel
tabAlign="center"
tabStyle={tabStyle}
>
<div tabTitle="first tab"> first </div>
<div tabTitle="second tab"> second </div>
<div tabTitle="third tab"> third </div>
</TabPanel>
</div>
);
export default ExperimentDetail;
的輸出被顯示爲是這樣,這是接近正確的,但有輕微的錯誤。
在此先感謝您的幫助!
你達人!感謝您幫助我。 –