view mrjunejune/src/resume/index.js @ 127:9af248484ba2

[Updated] MrJuneJune Test.
author June Park <parkjune1995@gmail.com>
date Thu, 08 Jan 2026 18:05:47 -0800
parents bcc76a156aea
children
line wrap: on
line source

function loadComponent(ele, file_path)
{
  fetch(file_path)
    .then(response => response.text())
    .then(data => ele.innerHTML = data)
}
loadComponent(header, 'header.html');
loadComponent(footer, 'footer.html');