mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
add new story for search filter chips
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import type { Meta, StoryObj } from "@storybook/react";
|
||||
import { SearchFilterChips } from "./SearchFilterChips";
|
||||
|
||||
const meta = {
|
||||
title: "AGPT UI/Search Filter Chips",
|
||||
component: SearchFilterChips,
|
||||
parameters: {
|
||||
layout: "centered",
|
||||
},
|
||||
tags: ["autodocs"],
|
||||
argTypes: {
|
||||
onFilterChange: { action: "onFilterChange" },
|
||||
},
|
||||
} satisfies Meta<typeof SearchFilterChips>;
|
||||
|
||||
export default meta;
|
||||
type Story = StoryObj<typeof meta>;
|
||||
|
||||
export const Default: Story = {};
|
||||
Reference in New Issue
Block a user