UNPKG

devexpress-reporting-react

Version:

DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.

14 lines (13 loc) 462 B
import { analyticsTemplates } from '../components/analytics/_templates'; import { reportingTemplates } from '../components/reporting/_templates'; export class TemplateEngine { constructor() { this._templates = { ...analyticsTemplates, ...reportingTemplates }; } getTemplate(templateName) { return this._templates[templateName]; } setTemplate(templateName, template) { this._templates[templateName] = template; } }