Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoran-chen committed Nov 14, 2024
1 parent e57c85f commit 3207b77
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import type { Meta, StoryObj } from '@storybook/web-components';
import { html } from 'lit';

import './gs-mutations-over-time';
import './gs-wastewater-mutations-over-time';
import '../app';
import { withComponentDocs } from '../../../.storybook/ComponentDocsBlock';
import { WISE_LAPIS_URL } from '../../constants';
import { type MutationsOverTimeProps } from '../../preact/mutationsOverTime/mutations-over-time';
import { type WastewaterMutationsOverTimeProps } from '../../preact/wastewater/mutationsOverTime/wastewater-mutations-over-time';

const codeExample = String.raw`
Expand Down Expand Up @@ -41,7 +40,7 @@ const meta: Meta<Required<WastewaterMutationsOverTimeProps>> = {

export default meta;

export const Default: StoryObj<Required<MutationsOverTimeProps>> = {
export const Default: StoryObj<Required<WastewaterMutationsOverTimeProps>> = {
render: (args) => html`
<gs-app lapis="${WISE_LAPIS_URL}">
<gs-wastewater-mutations-over-time
Expand Down

0 comments on commit 3207b77

Please sign in to comment.