mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
11 lines
209 B
JavaScript
11 lines
209 B
JavaScript
import React from 'react';
|
|
import AccountListItem from './account-list-item';
|
|
|
|
export default {
|
|
title: 'AccountListItem',
|
|
};
|
|
|
|
export const AccountListItemComponent = () => {
|
|
return <AccountListItem />;
|
|
};
|