React-Bootstrap Modalを使用しましたが、なぜFooコンポーネントが2回レンダリングされるのか理解できません。React-Bootstrapモーダルの問題?
import { Modal, Button } from 'react-bootstrap';
const Foo = (props) => {
console.log(‘a’);
return(
<div>foo</div>
)
}
class Example extends Component {
render() {
return(
<Modal show={true}>
<Foo />
</Modal>
)
}
}
2回実行するとどういう意味ですか? –
それは本当ですか?ホットリロードを再構築または再実行しようとしましたか。コードを見ると、これは2回レンダリングできません。 – Fawaz