Skip to content

Instantly share code, notes, and snippets.

@haruelrovix
Created December 9, 2018 01:27
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 haruelrovix/15cd4badc3a9ec949037b19d9195d6bc to your computer and use it in GitHub Desktop.
Save haruelrovix/15cd4badc3a9ec949037b19d9195d6bc to your computer and use it in GitHub Desktop.
RNE x RNW: Import Home component
import React, { Component } from 'react';
import Home from './Components/Home';
class App extends Component {
render() {
return (
<Home />
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment