import { ComponentStory, ComponentMeta } from '@storybook/react'; import { Timezone } from './index'; export default { title: 'App Components/Settings/Timezone', component: Timezone, } as ComponentMeta; function handleUpdate() { return; } export const Interactive: ComponentStory = () => { return ; }; Interactive.args = {};