UNPKG

@mymonero/mymonero-page-templates

Version:

This npm package contains a number of Lit element templates that MyMonero uses for various page layouts.

20 lines (17 loc) 768 B
/* Require reusable components */ //require("@mymonero/mymonero-web-components"); //require("./node_modules/@mymonero/mymonero-web-components"); //require("@mymonero/mymonero-web-components"); /* Require various view elements */ require("./Exchange/Elements/ChangenowBuyWithFiatView"); require("./Exchange/Elements/ChangenowFixedRateView") require("./Exchange/Elements/ChangenowFloatingRateView"); require("./Yat/Elements/YatSettingsView"); /* Import exchange landing page class */ let ExchangeLandingPage = require("./Exchange/Elements/ExchangeLandingPage"); let ExchangeNavigationController = require("./Exchange/Controllers/ExchangeNavigationController"); /* Export page templates */ module.exports = { ExchangeLandingPage, ExchangeNavigationController }