Procházet zdrojové kódy

chore: remove metasyntactic variables

Aaron Bassett před 5 měsíci
rodič
revize
ab2bfbe3e0

+ 4 - 3
packages/component-library/src/TabList/index.stories.tsx

@@ -1,7 +1,7 @@
 import type { Meta, StoryObj } from "@storybook/react";
 
-import { TabList as TabListComponent } from "./index.jsx";
 import { Tabs as UnstyledTabs } from "../unstyled/Tabs/index.jsx";
+import { TabList as TabListComponent } from "./index.jsx";
 
 const meta = {
   component: TabListComponent,
@@ -31,8 +31,9 @@ export const TabList = {
   args: {
     label: "Tab List",
     items: [
-      { id: "foo", children: "Foo" },
-      { id: "bar", children: "Bar" },
+      { id: "btc", children: "BTC" },
+      { id: "eth", children: "ETH" },
+      { id: "sol", children: "SOL" },
     ],
   },
 } satisfies StoryObj<typeof TabListComponent>;