You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This is a placeholder file which shows how you can access functions and data defined in other files. You can delete the contents of the file once you have understood how it works.
// It can be run with `node`.
import { getGreeting } from "./common.mjs";
import daysData from "./days.json" with { type: "json" };
console.log(`{getGreeting()} - there are ${daysData.length} known days`);