wix-style-react
Version:
wix-style-react
10 lines • 518 B
JavaScript
import React from 'react';
import { theme } from '../../index';
import ThemeProvider from '../../../../ThemeProvider';
/*
* This is just a simple usage of the Theme to calculate the additional bundle size
* Pay attention that the bundle size limitiaion is the maximum size. If only some components in the theme are used in a project, the bundle could be smaller
*/
export default () => (React.createElement(ThemeProvider, { theme: theme() },
React.createElement("div", null)));
//# sourceMappingURL=index.js.map