Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

fix(storybook): merge transaction/transactions section #2222

Merged
merged 2 commits into from Jun 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -3,7 +3,7 @@ import React from "react";

import { DelegateRegistrationDetail } from "./DelegateRegistrationDetail";

export default { title: "Transaction / Components / Delegate Registration Detail" };
export default { title: "Transactions / Components / Delegate Registration Detail" };

export const Default = () => (
<DelegateRegistrationDetail isOpen={boolean("Is Open", true)} onClose={() => alert("closed")} />
Expand Down
Expand Up @@ -3,6 +3,6 @@ import React from "react";

import { IpfsDetail } from "./IpfsDetail";

export default { title: "Transaction / Components / IPFS Detail" };
export default { title: "Transactions / Components / IPFS Detail" };

export const Default = () => <IpfsDetail isOpen={boolean("Is Open", true)} onClose={() => alert("closed")} />;
Expand Up @@ -3,6 +3,6 @@ import React from "react";

import { MultiPaymentDetail } from "./MultiPaymentDetail";

export default { title: "Transaction / Components / MultiPayment Detail" };
export default { title: "Transactions / Components / MultiPayment Detail" };

export const Default = () => <MultiPaymentDetail isOpen={boolean("Is Open", true)} onClose={() => alert("closed")} />;
Expand Up @@ -3,7 +3,7 @@ import React from "react";

import { MultiSignatureDetail } from "./MultiSignatureDetail";

export default { title: "Transaction / Components / MultiSignature Detail" };
export default { title: "Transactions / Components / MultiSignature Detail" };

export const Default = () => (
<MultiSignatureDetail
Expand Down
Expand Up @@ -3,7 +3,7 @@ import React from "react";

import { SelectDelegate } from "./SelectDelegate";

export default { title: "Transaction / Components / Select Delegate Modal" };
export default { title: "Transactions / Components / Select Delegate Modal" };

export const Default = () => <SelectDelegate isOpen={boolean("Is Open", true)} onClose={() => alert("closed")} />;

Expand Down
Expand Up @@ -3,7 +3,7 @@ import React from "react";
import { SendTransactionForm } from "./SendTransactionForm";

export default {
title: "Transaction / Components / Send Transaction / Step 1",
title: "Transactions / Components / Send Transaction / Step 1",
};

const defaultFormValues = {
Expand Down
Expand Up @@ -3,6 +3,6 @@ import React from "react";

import { TransferDetail } from "./TransferDetail";

export default { title: "Transaction / Components / Transfer Detail" };
export default { title: "Transactions / Components / Transfer Detail" };

export const Default = () => <TransferDetail isOpen={boolean("Is Open", true)} onClose={() => alert("closed")} />;
Expand Up @@ -3,6 +3,6 @@ import React from "react";

import { VoteDetail } from "./VoteDetail";

export default { title: "Transaction / Components / Vote Detail" };
export default { title: "Transactions / Components / Vote Detail" };

export const Default = () => <VoteDetail isOpen={boolean("Is Open", true)} onClose={() => alert("closed")} />;