Skip to content

Instantly share code, notes, and snippets.

@suzdalnitski
Last active September 3, 2018 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suzdalnitski/af3cbacd013024f619d5f318270df341 to your computer and use it in GitHub Desktop.
Save suzdalnitski/af3cbacd013024f619d5f318270df341 to your computer and use it in GitHub Desktop.
import React from "react";
class SimpleForm extends React.Component {
render() {
return (
<div>
<input type="text" name="firstName" />
<Greetings firstName="John" />
</div>
);
}
}
const App = () => (
<div>
<SimpleForm />
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment