@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 CHANGED
@@ -10,7 +10,7 @@ yarn add @bigbinary/neeto-site-blocks
10
10
 
11
11
  ## Usage
12
12
 
13
- ### Eg: FeatureSection
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 `FeatureSection` block.
23
+ Here is an example of how to use the `FeatureWithRightImage` block.
24
24
 
25
25
  ```js
26
- import { FeatureSection } from "@bigbinary/neeto-site-blocks";
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 FeatureSectionBlock = () => {
105
+ const FeatureWithRightImageBlock = () => {
106
106
  return (
107
- <FeatureSection
108
- id="feature-section"
107
+ <FeatureWithRightImage
108
+ id="feature-with-right-image"
109
109
  configuration={configuration}
110
110
  className="my-10"
111
111
  baseUrl="/"