mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 07:16:36 +01:00
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';
|