Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created May 9, 2018 19:04
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 gdyrrahitis/ef07e7521ca28a0b066a4683b9e46542 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/ef07e7521ca28a0b066a4683b9e46542 to your computer and use it in GitHub Desktop.
import React from "react";
import ReactDOM from "react-dom";
import { NameForm } from "./nameForm";
export class FormContainer extends React.Component {
constructor(props) {
super();
this.props = props;
}
render() {
const store = this.props.store;
return <div className="row">
<div className="col-md-2">
<NameForm store={store} />
</div>
</div>;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment