(
-
-
-
- ),
- ],
-};
diff --git a/frontend/src/stories/Histogram.stories.tsx b/frontend/src/stories/Histogram.stories.tsx
new file mode 100644
index 000000000..cc9e2b767
--- /dev/null
+++ b/frontend/src/stories/Histogram.stories.tsx
@@ -0,0 +1,71 @@
+import type { Meta } from '@storybook/react';
+import Histogram from "../components/Histogram/Histogram";
+
+const meta: Meta
= {
+ title: "Histogram",
+ component: Histogram,
+ parameters: {
+ layout: "fullscreen",
+ },
+ tags: ["autodocs"],
+};
+
+export const Default = {
+ args: {
+ bars: 7,
+ spacing: 6,
+ interval: 100,
+ running: true,
+ marginLeft: 0,
+ marginTop: 0,
+ backgroundColor: undefined,
+ borderRadius: "0.15rem",
+ },
+ decorators: [
+ (Story) => (
+
+
+
+ ),
+ ],
+};
+
+export const Random = {
+ args: {
+ bars: 7,
+ spacing: 6,
+ interval: 100,
+ running: true,
+ marginLeft: 0,
+ marginTop: 0,
+ backgroundColor: undefined,
+ borderRadius: "0.15rem",
+ random: true,
+ interval: 150,
+ },
+ decorators: [
+ (Story) => (
+
+
+
+ ),
+ ],
+};
+
+export default meta;