Javascript – Cannot read properties of null (reading 'firstChild')
I'm working entirely with javascript, and webpack generates the HTML file after I run the build. Here are the different modules of my code: index.js import { renderLayout } from './layout.js'; import { generateDialog } from './dialog.js'; import './style.css'; renderLayout();…