File size: 692 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | import { useState } from 'react';
import SearchableDropdown from './index';
import type { Meta, StoryObj } from '@storybook/react';
const meta: Meta< typeof SearchableDropdown > = {
title: 'Unaudited/SearchableDropdown',
component: SearchableDropdown,
};
export default meta;
type Story = StoryObj< typeof SearchableDropdown >;
export const Default: Story = {
render: function Template( props ) {
const [ value, onChange ] =
useState< React.ComponentProps< typeof SearchableDropdown >[ 'value' ] >( 'home' );
return <SearchableDropdown value={ value } onChange={ onChange } { ...props } />;
},
args: {
options: [
{
label: 'Home',
value: 'home',
},
],
},
};
|