UNPKG

@happyhyep/tree-component

Version:

React Tree Component with Search functionality

11 lines (10 loc) 521 B
import type { Meta, StoryObj } from '@storybook/react'; import { TreeWithSearch } from '../src/TreeWithSearch'; declare const meta: Meta<typeof TreeWithSearch>; export default meta; type Story = StoryObj<typeof meta>; export declare const Default: Story; export declare const WithExtensionSearch: Story; export declare const ExpandedByDefault: Story; export declare const CustomSearchInput: () => import("react/jsx-runtime").JSX.Element; export declare const WithSelection: () => import("react/jsx-runtime").JSX.Element;