@sinco/react 1.0.14-rc.4 → 1.0.14-rc.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +8 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -17778,11 +17778,17 @@ const ToastNotificationComponent = toast => {
|
|
|
17778
17778
|
}))));
|
|
17779
17779
|
};
|
|
17780
17780
|
|
|
17781
|
-
// app.tsx
|
|
17782
17781
|
const App = () => {
|
|
17783
17782
|
return /*#__PURE__*/React__default.createElement(React__default.StrictMode, null, /*#__PURE__*/React__default.createElement(ThemeProvider, {
|
|
17784
17783
|
theme: SincoTheme
|
|
17785
|
-
}, /*#__PURE__*/React__default.createElement(ToastNotificationComponent,
|
|
17784
|
+
}, /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(ToastNotificationComponent, {
|
|
17785
|
+
type: '',
|
|
17786
|
+
title: '',
|
|
17787
|
+
seeMore: true,
|
|
17788
|
+
dataOpt: [{
|
|
17789
|
+
hola: "hajaja"
|
|
17790
|
+
}]
|
|
17791
|
+
}))));
|
|
17786
17792
|
};
|
|
17787
17793
|
|
|
17788
17794
|
var global$6 = global$l;
|