1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-25 11:28:51 +01:00
metamask-extension/ui/components/multichain/balance-overview/balance-overview.stories.js
Nidhi Kumari b8b94c2c1f
UX Multichain: Added balance-overview component (#20528)
* added balance-overview component

* updated balance overview component to use Currency utility props

* added MULTICHAIN feature flag

* lint fix

* lint fix

* lint fix

* updated ternary operators
2023-08-29 22:07:23 +05:30

12 lines
258 B
JavaScript

import React from 'react';
import { BalanceOverview } from '.';
export default {
title: 'Components/Multichain/BalanceOverview',
component: BalanceOverview,
};
export const DefaultStory = () => <BalanceOverview />;
DefaultStory.storyName = 'Default';