@hotosm/ui 0.2.0-a3 → 0.2.0-a4
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,13 +65,13 @@ pnpm install @hotosm/ui
|
|
|
65
65
|
// Import the components
|
|
66
66
|
<script
|
|
67
67
|
type="module"
|
|
68
|
-
src="https://s3.amazonaws.com/hotosm-ui/latest/
|
|
68
|
+
src="https://s3.amazonaws.com/hotosm-ui/latest/components/Button.js"
|
|
69
69
|
></script>
|
|
70
70
|
|
|
71
71
|
// Import the styles (or create your own)
|
|
72
72
|
<link
|
|
73
73
|
rel="stylesheet"
|
|
74
|
-
href="https://s3.amazonaws.com/hotosm-ui/latest/
|
|
74
|
+
href="https://s3.amazonaws.com/hotosm-ui/latest/theme/hot.css"
|
|
75
75
|
/>
|
|
76
76
|
|
|
77
77
|
<div>
|
|
@@ -96,7 +96,7 @@ pnpm install @hotosm/ui
|
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
```js
|
|
99
|
-
import
|
|
99
|
+
import '@hotosm/ui/components/Button'
|
|
100
100
|
|
|
101
101
|
const HomePage = ({}) => {
|
|
102
102
|
return (
|