mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
7b4aac7755
* connectd-sites * fix image path for storybook * lintfixd, namechange
20 lines
289 B
JavaScript
20 lines
289 B
JavaScript
import React from 'react';
|
|
|
|
import ConnectedSites from '.';
|
|
|
|
export default {
|
|
title: 'Connected Sites',
|
|
};
|
|
|
|
const PageSet = ({ children }) => {
|
|
return children;
|
|
};
|
|
|
|
export const ConnectedSitesComponent = () => {
|
|
return (
|
|
<PageSet>
|
|
<ConnectedSites />
|
|
</PageSet>
|
|
);
|
|
};
|