groovinads-ui 1.2.50 → 1.2.52

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
@@ -284,11 +284,11 @@ const DropdownSimpleDatePickerExample = () => {
284
284
  markSelectedPlacements();
285
285
  setKey((prevKey) => prevKey + 1);
286
286
  };
287
-
287
+
288
288
 
289
289
  return (
290
290
  <>
291
- <button onClick={() => setShow(!show)}>Toggle< button>
291
+ <button onClick={() => setShow(!show)}>Toggle</button>
292
292
  <div className='col-2'>
293
293
  <DropdownSimpleDatePicker
294
294
  {...args}
@@ -297,7 +297,7 @@ const DropdownSimpleDatePickerExample = () => {
297
297
  handleClear={ExampleClearDate}
298
298
  />
299
299
  </div>
300
- </>
300
+ </button>
301
301
  );
302
302
  };
303
303