Skip to content

Instantly share code, notes, and snippets.

@haruelrovix
Created December 9, 2018 01:27
Embed
What would you like to do?
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