-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Docx for Publisher Dataset Count (by name) component.
- Loading branch information
Alex Scott
committed
Mar 17, 2021
1 parent
64ae85d
commit 7b6e1f0
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |