Skip to content

Commit

Permalink
feat: XYK token list (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenlejoe authored Jan 16, 2024
1 parent 6bd9496 commit 5fb9209
Show file tree
Hide file tree
Showing 4 changed files with 541 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"react-dom": "^18.2.0"
},
"dependencies": {
"@covalenthq/client-sdk": "^0.7.4",
"@covalenthq/client-sdk": "^0.7.5",
"@headlessui/react": "^1.7.17",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { type Meta, type StoryObj } from "@storybook/react";
import { XYKTokenListView } from "./XYKTokenListView";

type Story = StoryObj<typeof XYKTokenListView>;

const meta: Meta<typeof XYKTokenListView> = {
title: "Organisms/XYK/Token",
component: XYKTokenListView,
};

export default meta;

export const XYKTokenList: Story = {
args: {
chain_name: "eth-mainnet",
dex_name: "uniswap_v2",
},
};
Loading

0 comments on commit 5fb9209

Please sign in to comment.