Skip to content

Commit

Permalink
Adding Docx for Publisher Dataset Count (by name) component.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Scott committed Mar 17, 2021
1 parent 64ae85d commit 7b6e1f0
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions src/components/PublisherDatasetCountByName/doc.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Publisher Dataset Count (by name).
menu: Components
route: /components/publisher-dataset-count-by-name
---

import { Playground, Props } from 'docz'
import PublisherDatasetCountByName from './index'

# Publisher dataset count (by name).

## Properties

<Props of={PublisherDatasetCountByName} />

### With no datasetCount.
<Playground>
<PublisherDatasetCountByName
name="State Economic Council"
/>
</Playground>

## Basic usage
### With a count of 1.
<Playground>
<PublisherDatasetCountByName
datasetCount="1"
name="State Economic Council"
/>
</Playground>

With a count of more than 1.
<Playground>
<PublisherDatasetCountByName
datasetCount="3"
name="State Economic Council"
/>
</Playground>

0 comments on commit 7b6e1f0

Please sign in to comment.