import styled from 'styled-components'; const Link = styled.a` font-weight: 600; `; const EnrichedLink = props => { return ( { props.children } ); }; export default EnrichedLink;