The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/components/data/CounterSet.stories.js

16 lines
339 B

import React from 'react';
import CounterSet from './CounterSet';
export default {
title: 'components/data/CounterSet',
component: CounterSet,
};
export const _default = () => <CounterSet
counters={[
{ count: 123, variation: 0 },
{ count: 456, variation: 7 },
{ count: 789, variation: -1, description: 'Description' },
]}
/>;