Rename `react-footer` to `react-footer-container`

This commit is contained in:
Rachel Ruderman 2020-07-03 00:48:49 -07:00
parent 145d3c63d5
commit e6349ccc49
3 changed files with 3 additions and 3 deletions

View File

@ -78,7 +78,7 @@
</div>
</section>
</main>
<div id='react-footer'></div>
<div id='react-footer-container'></div>
</div>
<script src="js/landing.js"></script>
<!-- Load React. -->

View File

@ -144,5 +144,5 @@ var Footer = function Footer() {
);
};
var domContainer = document.getElementById('react-footer');
var domContainer = document.getElementById('react-footer-container');
ReactDOM.render(React.createElement(Footer, null), domContainer);

View File

@ -78,5 +78,5 @@ const Footer = () => {
);
}
const domContainer = document.getElementById('react-footer');
const domContainer = document.getElementById('react-footer-container');
ReactDOM.render(<Footer />, domContainer);