// @flow import React from 'react'; import styled from 'styled-components'; import { color } from '../../../shared/styles/constants'; function Navigation() { return ( ); } const Brand = styled.a` font-weight: 600; font-size: 20px; text-decoration: none; color: ${color.black}; `; export default Navigation;