From 779c8fafcab07fbc5657c2537a6f8309cb43aee7 Mon Sep 17 00:00:00 2001 From: RichardPK Date: Sun, 29 Nov 2020 14:53:37 +0000 Subject: [PATCH] fix(button): Change import locations of button across WalletModal, Modal, Dropdown & Progress (#72) --- src/components/Dropdown/index.stories.tsx | 2 +- src/components/Progress/index.stories.tsx | 2 +- src/widgets/Modal/index.stories.tsx | 2 +- src/widgets/WalletModal/index.stories.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Dropdown/index.stories.tsx b/src/components/Dropdown/index.stories.tsx index 2b8789c0a..02b3f629b 100644 --- a/src/components/Dropdown/index.stories.tsx +++ b/src/components/Dropdown/index.stories.tsx @@ -1,5 +1,5 @@ import React from "react"; -import Button from "../Button"; +import Button from "../Button/Button"; import Dropdown from "./index"; export default { diff --git a/src/components/Progress/index.stories.tsx b/src/components/Progress/index.stories.tsx index 82eae61f4..59bf98ff1 100644 --- a/src/components/Progress/index.stories.tsx +++ b/src/components/Progress/index.stories.tsx @@ -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 { diff --git a/src/widgets/Modal/index.stories.tsx b/src/widgets/Modal/index.stories.tsx index 3aae70f5d..c2a45ad30 100644 --- a/src/widgets/Modal/index.stories.tsx +++ b/src/widgets/Modal/index.stories.tsx @@ -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 { diff --git a/src/widgets/WalletModal/index.stories.tsx b/src/widgets/WalletModal/index.stories.tsx index 20b301421..c1a71d114 100644 --- a/src/widgets/WalletModal/index.stories.tsx +++ b/src/widgets/WalletModal/index.stories.tsx @@ -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";