feat(components): move LinkExternal to shared component, import into admin

This commit is contained in:
Jody Heavener 2020-04-17 17:14:37 -04:00 коммит произвёл Danny Coates
Родитель 8bd85f44ca
Коммит 0c52d2717b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4C442633C62E00CB
3 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import React from 'react';
import LinkExternal from '../LinkExternal';
import LinkExternal from '../../../../fxa-components/LinkExternal';
import './index.scss';
export const Footer = () => (

Просмотреть файл

@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import React from 'react';
import LinkExternal from '../LinkExternal';
import LinkExternal from '../../../../fxa-components/LinkExternal';
import './index.scss';
export const LinkAbout = () => (

Просмотреть файл

@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import React from 'react';
import React from "react";
type LinkExternalProps = {
className?: string;
@ -13,7 +13,7 @@ type LinkExternalProps = {
export const LinkExternal = ({
className,
href,
children,
children
}: LinkExternalProps) => (
<a target="_blank" rel="noopener noreferrer" {...{ className }} {...{ href }}>
{children}