import React from 'react';
import { Provider } from 'react-redux';
import { panel, text, heading, divider, copyable } from '@metamask/snaps-ui';
import configureStore from '../../../../store/store';
import testData from '../../../../../.storybook/test-data';
import { SnapUIRenderer } from '.';
const store = configureStore(testData);
export default {
title: 'Components/App/SnapUIRenderer',
component: SnapUIRenderer,
decorators: [(story) => {story()}],
argTypes: {
data: {
control: 'object',
},
},
};
const DATA = panel([
heading('Foo bar'),
text('Description'),
divider(),
text('More text'),
copyable('Text you can copy'),
]);
export const DefaultStory = (args) => (
);
DefaultStory.args = {
data: DATA,
};
export const ErrorStory = (args) => (
);
ErrorStory.args = {
data: 'foo',
};