This commit is contained in:
Ezekiel Aquino 2018-12-04 17:00:30 +01:00
parent ae9614ba36
commit b552c2bd0c

View File

@ -1,5 +1,5 @@
import * as React from 'react'; import * as React from 'react';
import { Link as ReactRouterLink, withRouter } from 'react-router-dom'; import { Link as ReactRouterLink } from 'react-router-dom';
import styled from 'styled-components'; import styled from 'styled-components';
import { colors } from 'ts/style/colors'; import { colors } from 'ts/style/colors';
@ -32,7 +32,7 @@ export const Button = styled.button<ButtonInterface>`
text-decoration: none; text-decoration: none;
`; `;
export const Link = withRouter((props: ButtonInterface) => { export const Link = (props: ButtonInterface) => {
const { const {
children, children,
href, href,
@ -44,7 +44,7 @@ export const Link = withRouter((props: ButtonInterface) => {
{children} {children}
</Component> </Component>
); );
}); };
// Added this, & + & doesnt really work since we switch with element types... // Added this, & + & doesnt really work since we switch with element types...
export const ButtonWrap = styled.div` export const ButtonWrap = styled.div`