mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 22:24:27 +01:00
11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
|
import React from 'react';
|
||
|
import TokenListPlaceholder from './token-list-placeholder.component';
|
||
|
|
||
|
export default {
|
||
|
title: 'TokenListPlaceholder',
|
||
|
};
|
||
|
|
||
|
export const TokenListPlaceholderComponent = () => {
|
||
|
return <TokenListPlaceholder />;
|
||
|
};
|