import { Button, ButtonGroup, Tile } from '@rocket.chat/fuselage';
import React from 'react';
import { fullHeightDecorator } from '../../../.storybook/decorators';
import Page from './Page';
export default {
title: 'components/basic/Page',
component: Page,
};
const DummyContent = () => <>
{Array.from({ length: 60 }, (_, i) => )}
>;
export const Basic = () =>
;
export const WithButtonsAtTheHeader = () =>
;
export const WithScrollableContent = () =>
;
WithScrollableContent.story = {
decorators: [fullHeightDecorator],
};
export const WithScrollableContentWithShadow = () =>
;
WithScrollableContentWithShadow.story = {
decorators: [fullHeightDecorator],
};