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

11 lines
199 B
TypeScript
Raw Normal View History

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