UNPKG

devexpress-reporting-react

Version:

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

5 lines (4 loc) 287 B
import React from 'react'; export const TemplateEngineContext = React.createContext(null); const TemplateEngineProvider = ({ templateEngine, children }) => (React.createElement(TemplateEngineContext.Provider, { value: templateEngine }, children)); export default TemplateEngineProvider;