Skip to content

Instantly share code, notes, and snippets.

@qvil
Created June 26, 2017 07:16
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 qvil/e055ed4611cebe5dbcf3ee4aafa7eb26 to your computer and use it in GitHub Desktop.
Save qvil/e055ed4611cebe5dbcf3ee4aafa7eb26 to your computer and use it in GitHub Desktop.
For react-tutorial
import React from 'react';
import Header from './Header';
import Body from './Body';
const App = () => {
return (
<div>
<Header text="Hello World"/>
<Body number={3}/>
</div>
);
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment