Skip to content

Commit

Permalink
feat: XYK pool list (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenlejoe authored Jan 16, 2024
1 parent 5fb9209 commit d4846e1
Show file tree
Hide file tree
Showing 4 changed files with 597 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { type Meta, type StoryObj } from "@storybook/react";
import { XYKPoolListView } from "./XYKPoolListView";

type Story = StoryObj<typeof XYKPoolListView>;

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

export default meta;

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

0 comments on commit d4846e1

Please sign in to comment.