// @flow strict import React from 'react'; import { Link } from 'gatsby'; import styles from './Menu.module.scss'; type Props = { menu: { label: string, path: string }[] }; const Menu = ({ menu }: Props) => ( ); export default Menu;