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/ee/app/engagement-dashboard/client/components/data/Histogram.stories.js

16 lines
419 B

import { Box, Flex, Margins } from '@rocket.chat/fuselage';
import React from 'react';
import { Histogram } from './Histogram';
export default {
title: 'admin/enterprise/engagement/data/Histogram',
component: Histogram,
decorators: [(fn) => <Margins all='x16'>
<Flex.Container>
<Box children={fn()} style={{ height: 240 }} />
</Flex.Container>
</Margins>],
};
export const _default = () => <Histogram />;