Files
Homarr/components/Settings/SettingsMenu.story.tsx

11 lines
199 B
TypeScript
Raw Normal View History

2022-04-30 21:37:04 +02:00
import { SettingsMenuButton } from './SettingsMenu';
2022-04-27 03:11:51 +02:00
export default {
title: ' menu',
args: {
opened: false,
},
};
export const Default = (args: any) => <SettingsMenuButton {...args} />;