<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
  </head>

  <body>
    <script type="module" src="script.js"></script>
  </body>

</html>
import * as allExports from './index.js';
document.body.appendChild(
  document.createTextNode(
    Object.getOwnPropertyNames(allExports).join(",")
  )
);
/* Styles go here */

import Book from './Book.js';
import User from './User.js';
export * from './userActions.js';
export { Book, User };
export default class Book {  }
export default class User { }
export const login = (username, password) => {  };
export const logout = () => {  };