RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/views/admin/engagementDashboard/EngagementDashboardPage.stories.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import type { Meta, Story } from '@storybook/react';
import type { ReactElement } from 'react';
import React from 'react';

import EngagementDashboardPage from './EngagementDashboardPage';

export default {
    title: 'Enterprise/Admin/Engagement Dashboard/EngagementDashboardPage',
    component: EngagementDashboardPage,
    decorators: [(fn): ReactElement => <div children={fn()} style={{ height: '100vh' }} />],
} as Meta;

export const Default: Story = () => <EngagementDashboardPage tab='users' />;
Default.storyName = 'EngagementDashboardPage';