@sinco/react 1.0.14-rc.2 → 1.0.14-rc.3

Sign up to get free protection for your applications and to get access to all the features.
package/index.js CHANGED
@@ -17778,6 +17778,13 @@ const ToastNotificationComponent = toast => {
17778
17778
  }))));
17779
17779
  };
17780
17780
 
17781
+ // app.tsx
17782
+ const App = () => {
17783
+ return /*#__PURE__*/React__default.createElement(React__default.StrictMode, null, /*#__PURE__*/React__default.createElement(ThemeProvider, {
17784
+ theme: SincoTheme
17785
+ }, /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(ToastNotificationComponent, null))));
17786
+ };
17787
+
17781
17788
  var global$6 = global$l;
17782
17789
  var classof$2 = classofRaw$2;
17783
17790
 
@@ -23235,4 +23242,4 @@ const useDynamicColor = url => {
23235
23242
  };
23236
23243
  };
23237
23244
 
23238
- export { DrawerComponent, DynamicColor, EmptyStateComponent, EmptyStateImageUrls, FooterActionComponent, SincoTheme, ToastNotificationComponent, useDynamicColor };
23245
+ export { App, DrawerComponent, DynamicColor, EmptyStateComponent, EmptyStateImageUrls, FooterActionComponent, SincoTheme, ToastNotificationComponent, useDynamicColor };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.0.14-rc.2",
3
+ "version": "1.0.14-rc.3",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const App: () => JSX.Element;
@@ -2,3 +2,4 @@ export * from './EmptyState';
2
2
  export * from './Drawer';
3
3
  export * from './FooterAction';
4
4
  export * from './ToastNotification';
5
+ export * from './App';