async function fnc() {
  const file = await fetch('sample.json');
  console.log(file);
  const json = await file.json();
  console.log(json);
};

fnc();