@bigbinary/neeto-site-blocks 0.4.9 → 0.4.11
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 +6 -6
- package/dist/index.js +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ yarn add @bigbinary/neeto-site-blocks
|
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
|
-
### Eg:
|
|
13
|
+
### Eg: FeatureWithRightImage
|
|
14
14
|
|
|
15
15
|
#### Props
|
|
16
16
|
1. **id**: To specify the id of the block.
|
|
@@ -20,10 +20,10 @@ yarn add @bigbinary/neeto-site-blocks
|
|
|
20
20
|
3. **className**: To specify the external classnames.
|
|
21
21
|
4. **baseUrl**: It is used within button and link component to specify the base url for navigation.
|
|
22
22
|
|
|
23
|
-
Here is an example of how to use the `
|
|
23
|
+
Here is an example of how to use the `FeatureWithRightImage` block.
|
|
24
24
|
|
|
25
25
|
```js
|
|
26
|
-
import {
|
|
26
|
+
import { FeatureWithRightImage } from "@bigbinary/neeto-site-blocks";
|
|
27
27
|
|
|
28
28
|
configurations: {
|
|
29
29
|
properties: {
|
|
@@ -102,10 +102,10 @@ configurations: {
|
|
|
102
102
|
},
|
|
103
103
|
},
|
|
104
104
|
|
|
105
|
-
const
|
|
105
|
+
const FeatureWithRightImageBlock = () => {
|
|
106
106
|
return (
|
|
107
|
-
<
|
|
108
|
-
id="feature-
|
|
107
|
+
<FeatureWithRightImage
|
|
108
|
+
id="feature-with-right-image"
|
|
109
109
|
configuration={configuration}
|
|
110
110
|
className="my-10"
|
|
111
111
|
baseUrl="/"
|