Skip to content

Commit

Permalink
chore(Progress): add a simple storybook story
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Oct 2, 2024
1 parent 93951b0 commit 955c9e2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/v2/components/ui/Progress.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { Meta } from "@storybook/react"
import { ProgressIndicator, ProgressRoot } from "./Progress"

export const Progress = () => {
return (
<ProgressRoot>
<ProgressIndicator value={0.44} />
</ProgressRoot>
)
}

const meta: Meta<typeof Progress> = {
title: "Design system/Progress",
component: Progress,
}

export default meta

0 comments on commit 955c9e2

Please sign in to comment.