You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
662 B
27 lines
662 B
4 years ago
|
import Button from '../../ui/button';
|
||
|
import Chip from '../../ui/chip';
|
||
|
import DefinitionList from '../../ui/definition-list';
|
||
|
import TruncatedDefinitionList from '../../ui/truncated-definition-list';
|
||
|
import Popover from '../../ui/popover';
|
||
|
import Typography from '../../ui/typography';
|
||
|
import Box from '../../ui/box';
|
||
4 years ago
|
import MetaMaskTranslation from '../metamask-translation';
|
||
4 years ago
|
import NetworkDisplay from '../network-display';
|
||
4 years ago
|
|
||
|
export const safeComponentList = {
|
||
4 years ago
|
MetaMaskTranslation,
|
||
4 years ago
|
a: 'a',
|
||
4 years ago
|
b: 'b',
|
||
|
p: 'p',
|
||
|
div: 'div',
|
||
|
span: 'span',
|
||
|
Typography,
|
||
|
Chip,
|
||
|
DefinitionList,
|
||
|
TruncatedDefinitionList,
|
||
|
Button,
|
||
|
Popover,
|
||
|
Box,
|
||
4 years ago
|
NetworkDisplay,
|
||
4 years ago
|
};
|