※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
import React from 'react'; import ReactDOM from 'react-dom'; import MyComponent from './MyComponent'; import './index.css'; ReactDOM.render( <div> <table> <tr><td> <MyComponent title="My COMPONENT A" content="これは、オリジナルコンポーネントのサンプルです。" /> </td></tr> <tr><td> <MyComponent title="my component B" content="this is mycomponent sample..." /> </td></tr> </table> </div>, document.getElementById('root') );
<< 前へ |