6 lines
189 B
JavaScript
6 lines
189 B
JavaScript
|
window.onload = () => {
|
||
|
console.log('from js');
|
||
|
const kennelWindowEle = document.querySelector('#kennel-window');
|
||
|
kennelWindowEle.innerHTML = 'rendered from static/index.js';
|
||
|
}
|