lbry.tech/app/components/ecosystem.js

40 lines
900 B
JavaScript
Raw Normal View History

2018-07-12 10:21:42 -05:00
"use strict";
2018-09-26 11:42:41 -05:00
2018-08-24 16:58:04 -05:00
// V A R I A B L E S
2018-07-12 10:21:42 -05:00
2018-08-24 16:58:04 -05:00
const APPLICATIONS = require("./ecosystem/module-applications");
const CHAINQUERY = require("./ecosystem/submodule-chainquery");
const LBRY = require("./ecosystem/module-lbry");
const LBRYCRD = require("./ecosystem/module-lbrycrd");
const LIGHTHOUSE = require("./ecosystem/submodule-lighthouse");
const REFLECTOR = require("./ecosystem/submodule-reflector");
const WALLET = require("./ecosystem/submodule-wallet");
2018-07-12 10:21:42 -05:00
2018-09-26 11:42:41 -05:00
// E X P O R T
2018-10-03 15:27:13 -05:00
export default () => {
2018-08-24 17:30:58 -05:00
return `
2018-08-24 16:58:04 -05:00
<section class="ecosystem">
<aside class="ecosystem__submodules">
${CHAINQUERY()}
${WALLET()}
</aside>
2018-07-12 10:21:42 -05:00
2018-08-24 16:58:04 -05:00
<section class="ecosystem__modules">
${LBRYCRD()}
${LBRY()}
${APPLICATIONS()}
</section>
2018-07-12 10:21:42 -05:00
2018-08-24 16:58:04 -05:00
<aside class="ecosystem__submodules">
${LIGHTHOUSE()}
${REFLECTOR()}
</aside>
</section>
`;
2018-10-03 15:27:13 -05:00
};