react-strawberry-toast 1.0.0-alpha.3 → 1.0.0
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 +1 -1
- package/package.json +2 -2
- /package/dist/{index.css → style.css} +0 -0
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ pnpm i --save react-strawberry-toast
|
|
|
24
24
|
|
|
25
25
|
```jsx
|
|
26
26
|
import { ToastContainer, toast } from 'react-strawberry-toast';
|
|
27
|
-
import 'react-strawberry-toast/dist/
|
|
27
|
+
import 'react-strawberry-toast/dist/style.css';
|
|
28
28
|
|
|
29
29
|
function App() {
|
|
30
30
|
const click = () => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-strawberry-toast",
|
|
3
3
|
"description": "A simple and customizable React toast library",
|
|
4
|
-
"version": "1.0.0
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"author": "dkpark10",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"keywords": [
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"default": "./dist/headless.mjs"
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
|
-
"./dist/
|
|
44
|
+
"./dist/style.css": "./dist/style.css"
|
|
45
45
|
},
|
|
46
46
|
"files": [
|
|
47
47
|
"dist"
|
|
File without changes
|