Skip to content

Instantly share code, notes, and snippets.

@AienTech
Created February 16, 2018 20:40
Show Gist options
  • Save AienTech/ad05745ca241c707d866943afc057979 to your computer and use it in GitHub Desktop.
Save AienTech/ad05745ca241c707d866943afc057979 to your computer and use it in GitHub Desktop.
_POST_NEXTJS
import React from "react";
export default class ThisIsAComponent extends React.Component {
Render() {
return (
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment