Skip to content

Instantly share code, notes, and snippets.

@tecsyscom
Created April 14, 2017 14:44
Show Gist options
  • Save tecsyscom/8b2ffcd29ef4bac5071af4c885e4fd2c to your computer and use it in GitHub Desktop.
Save tecsyscom/8b2ffcd29ef4bac5071af4c885e4fd2c to your computer and use it in GitHub Desktop.
component App with ES6 or not with ES6
import React from 'react';
const App = () => (
<div>
<AddTodo />
<VisibleTodoList />
<Footer />
</div>
)
//or
export default React.createClass({
render() {
return (
<div>
<AddTodo />
<VisibleTodoList />
<Footer />
</div>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment