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/views/admin/viewLogs/ViewLogsPage.stories.tsx

17 lines
432 B

import React, { ReactElement, ReactNode } from 'react';
import ViewLogsPage from './ViewLogsPage';
export default {
title: 'admin/pages/ViewLogsPage',
component: ViewLogsPage,
decorators: [
(fn: () => ReactNode): ReactElement => (
<div className='rc-old' style={{ display: 'flex', flexDirection: 'column', height: '100vh' }}>
{fn()}
</div>
),
],
};
export const _default = (): ReactElement => <ViewLogsPage />;