Skip to content

Instantly share code, notes, and snippets.

@przemek-nowicki
Last active May 6, 2019 11:19
Show Gist options
  • Save przemek-nowicki/05813f50688d1cb4760be57cc3d1427f to your computer and use it in GitHub Desktop.
Save przemek-nowicki/05813f50688d1cb4760be57cc3d1427f to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
export default class Menu extends Component {
render() {
return (
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/products/product-1.html">Product</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment