Skip to content

Commit 20ff158

Browse files
committed
chore: remove metasyntactic variable names
1 parent feca397 commit 20ff158

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/component-library/src/MainNavTabs/index.stories.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Meta, StoryObj } from "@storybook/react";
22

3-
import { MainNavTabs as MainNavTabsComponent } from "./index.jsx";
43
import { Tabs } from "../unstyled/Tabs/index.jsx";
4+
import { MainNavTabs as MainNavTabsComponent } from "./index.jsx";
55

66
const meta = {
77
component: MainNavTabsComponent,
@@ -26,8 +26,8 @@ export const MainNavTabs = {
2626
args: {
2727
tabs: [
2828
{ children: "Home", segment: "" },
29-
{ children: "Foo", segment: "foo" },
30-
{ children: "Bar", segment: "bar" },
29+
{ children: "Products", segment: "products" },
30+
{ children: "Developers", segment: "developers" },
3131
],
3232
},
3333
} satisfies StoryObj<typeof MainNavTabsComponent>;

packages/component-library/src/MobileNavTabs/index.stories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ export const MobileNavTabs = {
2121
args: {
2222
tabs: [
2323
{ children: "Home", segment: "" },
24-
{ children: "Foo", segment: "foo" },
25-
{ children: "Bar", segment: "bar" },
24+
{ children: "Products", segment: "products" },
25+
{ children: "Developers", segment: "developers" },
2626
],
2727
},
2828
} satisfies StoryObj<typeof MobileNavTabsComponent>;

0 commit comments

Comments
 (0)