A Metamask fork with Infura removed and default networks editable
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.
ciphermask/ui/components/app/add-token-button/add-token-button.component.js

35 lines
900 B

import React from 'react';
import { useHistory } from 'react-router-dom';
import { useMetricEvent } from '../../../hooks/useMetricEvent';
import { useI18nContext } from '../../../hooks/useI18nContext';
import { ADD_TOKEN_ROUTE } from '../../../helpers/constants/routes';
import Button from '../../ui/button';
export default function AddTokenButton() {
const addTokenEvent = useMetricEvent({
eventOpts: {
category: 'Navigation',
action: 'Token Menu',
name: 'Clicked "Add Token"',
},
});
const t = useI18nContext();
const history = useHistory();
return (
<div className="add-token-button">
<Button
className="add-token-button__button"
type="secondary"
rounded
onClick={() => {
history.push(ADD_TOKEN_ROUTE);
addTokenEvent();
}}
>
{t('addToken')}
</Button>
</div>
);
}