@sitecore/sc-contenthub-blok
Version:
A UI library for [Sitecore Content Hub](https://doc.sitecore.com/ch/).
9 lines (8 loc) • 371 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react";
import { PropsWithChildren } from "react";
import { BlokSelectProps } from "./BlokSelect";
type ComponentProps = PropsWithChildren<BlokSelectProps<string, string>>;
declare const meta: Meta<ComponentProps>;
export default meta;
type Story = StoryObj<ComponentProps>;
export declare const BlokSelectExamples: Story;