mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
b8b94c2c1f
* 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
12 lines
258 B
JavaScript
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';
|