<!DOCTYPE html>
  <head>
        <title>TG Graph</title>
  </head>
  <body>
    <div class="container">
     <script type="module">
import {sayHi, sayBye} from './say.js';
sayHi('John'); // Hello, John!
sayBye('John'); // Bye, John!
</script> 
    </div>
    
  </body>
</html>
Выдает ошибку "the requested module does not provide an export named"
Оба файла лежат в одной директории.