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/components/basic/KeyboardShortcuts.stories.js

16 lines
378 B

import React from 'react';
import { Box } from '@rocket.chat/fuselage';
import VerticalBar from './VerticalBar';
import KeyboardShortcuts from './KeyboardShortcuts';
export default {
title: 'components/basic/KeyboardShortcut',
component: KeyboardShortcuts,
};
export const Default = () => <Box height='600px'>
<VerticalBar>
<KeyboardShortcuts />
</VerticalBar>
</Box>;