index.js 613 B

1234567891011121314
  1. const popularProductionIds = ['646c77cf693b8e668a900a73', '646f123c720b54f89ed2130a', '646c7aee958d8bed2e00b8e9'];
  2. const popularDevelopmentIds = ['64731d4e1084f5a48293ce9f', '64731d4e1084f5a48293ceab'];
  3. const getStartedDevelopmentIds = [
  4. '65c25bd6f4de5ad335bb8e48',
  5. '65c25bd5f4de5ad335bb8dc0',
  6. '65c25bd1f4de5ad335bb8c91',
  7. '65c25bd3f4de5ad335bb8d2a',
  8. ];
  9. export function getPopularTemplateIds({ production }) {
  10. return production ? popularProductionIds : popularDevelopmentIds;
  11. }
  12. export function getGetStartedTemplateIds({ production }) {
  13. return production ? [] : getStartedDevelopmentIds;
  14. }