@autobusal/providers 1.0.0 → 1.0.1

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/Providers.tsx ADDED
@@ -0,0 +1,45 @@
1
+ // import { Provider as ProviderStyles } from './Styles/Provider';
2
+ // import { Provider as ProviderQueries } from './Queries/Provider';
3
+ // import { Provider as ProviderNotifications } from './Notifications/Provider';
4
+ // import loadLanguages from './Languages/loadLanguages';
5
+ // import loadAnalytics from './Analytics/loadAnalytics';
6
+
7
+ // import { Suspense } from 'react';
8
+ // import { ProviderStyles, ProviderQueries, ProviderNotifications, loadLanguages, loadAnalytics } from './providers';
9
+ // import { General } from '@components/Loading/Loading';
10
+
11
+ // ProviderStyles,
12
+ // ProviderQueries,
13
+ // ProviderNotifications,
14
+ // loadLanguages,
15
+ // loadAnalytics
16
+
17
+ // // load the languages
18
+ // loadLanguages();
19
+
20
+ // // load analytics
21
+ // loadAnalytics();
22
+
23
+ // const App = (): JSX.Element => (
24
+ // <ProviderStyles>
25
+ // <ProviderQueries>
26
+ // <ProviderNotifications>
27
+ // <Suspense fallback={ <General /> }>
28
+ // <Routing />
29
+ // </Suspense>
30
+ // </ProviderNotifications>
31
+ // </ProviderQueries>
32
+ // </ProviderStyles>
33
+ // );
34
+
35
+ interface Props {
36
+ children: JSX.Element
37
+ }
38
+
39
+ const Providers = ({ children }: Props): JSX.Element => (
40
+ <div>
41
+ Hello World!
42
+ </div>
43
+ );
44
+
45
+ export default Providers;
package/index.ts CHANGED
@@ -1 +1,7 @@
1
- alert('Hello World');
1
+ import Providers from './Providers';
2
+
3
+ // export {
4
+
5
+ // };
6
+
7
+ export default Providers;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@autobusal/providers",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module"
5
- }
5
+ }