7 lines
117 B
JavaScript
7 lines
117 B
JavaScript
|
import styled from 'styled-components'
|
||
|
|
||
|
export const Link = styled.a`
|
||
|
text-decoration: none;
|
||
|
`
|
||
|
export default Link
|