Skip to content

Commit

Permalink
Add LuceneQueryEditor story
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelemeny committed Feb 20, 2024
1 parent e8f94ee commit cc56e8a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/components/LuceneQueryEditor.stories.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { Meta, StoryObj } from '@storybook/react';

import { LuceneQueryEditor } from './LuceneQueryEditor';

const meta: Meta<typeof LuceneQueryEditor> = {
title: 'components/LuceneQueryEditor',
component: LuceneQueryEditor,
};

export default meta;
type Story = StoryObj<typeof LuceneQueryEditor>;

export const Base: Story = {};

0 comments on commit cc56e8a

Please sign in to comment.