diff --git a/apps/webapp/app/components/stories/PricingCalculator.stories.tsx b/apps/webapp/app/components/stories/PricingCalculator.stories.tsx deleted file mode 100644 index 17b9326e7..000000000 --- a/apps/webapp/app/components/stories/PricingCalculator.stories.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import type { Meta, StoryObj } from "@storybook/react"; -import { PricingCalculator } from "../billing/PricingCalculator"; -import { RunsVolumeDiscountTable } from "../billing/RunsVolumeDiscountTable"; - -const meta: Meta = { - title: "Billing/PricingCalculator", - component: Calculator, -}; - -export default meta; - -type Story = StoryObj; - -export const BillingCalculator: Story = { - render: (args) => , -}; - -function Calculator() { - return ( -
-
- -
- -
-
- -
-
- -
-
- ); -} diff --git a/apps/webapp/app/components/stories/PricingTiers.stories.tsx b/apps/webapp/app/components/stories/PricingTiers.stories.tsx deleted file mode 100644 index eaff255f0..000000000 --- a/apps/webapp/app/components/stories/PricingTiers.stories.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import type { Meta, StoryObj } from "@storybook/react"; -import { PricingTiers, TierEnterprise, TierFree, TierPro } from "../billing/PricingTiers"; - -const meta: Meta = { - title: "Billing/PricingTiers", - component: AllPricingTiers, -}; - -export default meta; - -type Story = StoryObj; - -export const AllTiers: Story = { - render: (args) => , -}; - -function AllPricingTiers() { - return ( -
- - - - - -
- ); -} diff --git a/apps/webapp/app/components/stories/UsageCharts.stories.tsx b/apps/webapp/app/components/stories/UsageCharts.stories.tsx deleted file mode 100644 index ff92596ac..000000000 --- a/apps/webapp/app/components/stories/UsageCharts.stories.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import type { Meta, StoryObj } from "@storybook/react"; -import { TooltipProps } from "recharts"; -import { ConcurrentRunsChart } from "../billing/ConcurrentRunsChart"; - -const meta: Meta = { - title: "Billing/UsageCharts", - component: UsageCharts, -}; - -export default meta; - -type Story = StoryObj; - -export const ConcurrentRuns: Story = { - render: () => , -}; - -export const RunQueue: Story = { - render: () => , -}; - -function UsageCharts() { - return ( -
- -
- ); -} - -function RunQueueChart() { - return
Run Queue chart
; -}