mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-22 23:28:56 +03:00
20 lines
425 B
JavaScript
20 lines
425 B
JavaScript
/* eslint-disable no-unused-vars */
|
|
import React from "react";
|
|
import Navigation from "./src/navigation/Drawer";
|
|
import { Provider } from "react-redux";
|
|
import store from "./src/redux/store/Store";
|
|
/* eslint-enable no-unused-vars */
|
|
|
|
export default class App extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Provider store={store}>
|
|
<Navigation />
|
|
</Provider>
|
|
);
|
|
}
|
|
} |