From b17f62d87f6e7958d89234ce846fd590e10d8f29 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Sirois Date: Thu, 21 May 2020 01:18:18 -0400 Subject: [PATCH] feat: use noreferrer on links --- src/components/DiscordButton/index.tsx | 5 ++++- src/components/Link/index.tsx | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/DiscordButton/index.tsx b/src/components/DiscordButton/index.tsx index 93e1787..4471143 100644 --- a/src/components/DiscordButton/index.tsx +++ b/src/components/DiscordButton/index.tsx @@ -3,7 +3,10 @@ import * as SC from "./styles" export const DiscordButton: FC = ({ children }) => { return ( - + {children} ) diff --git a/src/components/Link/index.tsx b/src/components/Link/index.tsx index df35a7e..2564fc7 100644 --- a/src/components/Link/index.tsx +++ b/src/components/Link/index.tsx @@ -11,7 +11,7 @@ export const Link: FC = ({ children, to }) => { } return ( - + {children} )