Skip to content

Instantly share code, notes, and snippets.

@roeib
Created October 1, 2019 09:30
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 roeib/d5963bb7f8cacacfac57cd05a91db892 to your computer and use it in GitHub Desktop.
Save roeib/d5963bb7f8cacacfac57cd05a91db892 to your computer and use it in GitHub Desktop.
import React from 'react';
import User from './User';
class App extends React.Component {
render() {
return (
<div>
<User name="Roei" age="30" />
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment