File size: 310 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
const count = () => {
/* Because Count is wrapped in Localize we have to store the example in a string */
};
count.defaultProps = {
exampleCode:
'<div>' +
'\n\t<Count count={ 65365 } />' +
'\n\t<Count primary count={ 65366 } />' +
'\n</div>',
};
count.displayName = 'Count';
export default count;
|