1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Got app to build again

This commit is contained in:
Laurent Cozic
2020-10-13 17:02:59 +01:00
parent 89263ac742
commit 3b0e3f6f43
8 changed files with 76 additions and 36 deletions

View File

@ -1,3 +1,11 @@
const {main} = require('./main.js');
// const {main} = require('./main.js');
main();
// main();
import {AppRegistry} from 'react-native';
const {Root} = require('./root.js');
// import App from './App';
// import {name as appName} from './app.json';
AppRegistry.registerComponent('Joplin', () => Root);