mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 22:24:27 +01:00
18 lines
367 B
JavaScript
18 lines
367 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
import SnapContentFooter from '.';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/Flask/SnapContentFooter',
|
||
|
id: __filename,
|
||
|
component: SnapContentFooter,
|
||
|
args: {
|
||
|
snapName: 'Test Snap',
|
||
|
snapId: 'local:test-snap',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <SnapContentFooter {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|