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/ViewLogs.stories.js

16 lines
338 B

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