Skip to content

Commit

Permalink
fix(button): Change import locations of button across WalletModal, Mo…
Browse files Browse the repository at this point in the history
…dal, Dropdown & Progress (#72)
  • Loading branch information
RichardPK committed Nov 29, 2020
1 parent f19dd0a commit 779c8fa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/Dropdown/index.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import Button from "../Button";
import Button from "../Button/Button";
import Dropdown from "./index";

export default {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Progress/index.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState } from "react";
import random from "lodash/random";
import Button from "../Button";
import Button from "../Button/Button";
import Progress from "./index";

export default {
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/Modal/index.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import { Modal, useModal } from ".";
import Button from "../../components/Button";
import Button from "../../components/Button/Button";
import Heading from "../../components/Heading";

export default {
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/WalletModal/index.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import Button from "../../components/Button";
import Button from "../../components/Button/Button";
import Flex from "../../components/Flex";
import useWalletModal from "./index";

Expand Down

0 comments on commit 779c8fa

Please sign in to comment.