@helpdice/ui 1.3.2 → 1.3.4

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/README.md CHANGED
@@ -13,13 +13,13 @@
13
13
  2. import into project:
14
14
 
15
15
  ```jsx
16
- import { ThemeProvider, CssBaseline } from '@helpdice/ui'
16
+ import { UiProvider, CssBaseline } from '@helpdice/ui'
17
17
 
18
18
  const Application = () => (
19
- <ThemeProvider>
19
+ <UiProvider>
20
20
  <CssBaseline /> // ---> Normalize styles
21
21
  <AppComponent /> // ---> Your App Component
22
- </ThemeProvider>
22
+ </UiProvider>
23
23
  )
24
24
  ```
25
25
 
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare function Empty(): React.JSX.Element;
3
+ export default Empty;
@@ -0,0 +1,2 @@
1
+ import Placeholder from "./placeholder";
2
+ export default Placeholder;