/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { StoryObj, StoryFn } from '@storybook/react' import type { InputTablesProps } from './InputTables.js' import { InputTables } from './InputTables.js' const storyMetadata = { title: 'Workflows', } export default storyMetadata export const InputTablesStory: StoryObj = { render: ( _args: InputTablesProps, { loaded: { companies, companies2, products, stocks } }: any, ): JSX.Element => ( ), name: 'Input Tables', }