vcc-ui
Version:
A React library for building user interfaces at Volvo Cars
15 lines • 341 B
JavaScript
import React from 'react';
import { ConfigContext, defaultConfig } from './config-context';
/** @deprecated */
export const ConfigProvider = _ref => {
let {
config,
children
} = _ref;
return /*#__PURE__*/React.createElement(ConfigContext.Provider, {
value: {
...defaultConfig,
...config
}
}, children);
};