Created
February 16, 2018 20:40
-
-
Save AienTech/ad05745ca241c707d866943afc057979 to your computer and use it in GitHub Desktop.
_POST_NEXTJS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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