Skip to content

Instantly share code, notes, and snippets.

@yoneda
Created December 23, 2018 20:06
Show Gist options
  • Save yoneda/a4a801ac621ae79666704251896e0e58 to your computer and use it in GitHub Desktop.
Save yoneda/a4a801ac621ae79666704251896e0e58 to your computer and use it in GitHub Desktop.
react stateless functional component template
import React from "react";
const Test = ({}) => {
return(
<div>
<p>texttext</p>
</div>
)
}
export default Test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment