forked from cerc-io/laconic-wallet
* Add ui library * Replace alert with dialog on wallet creation * Add review changes * Add semicolon * Remove comment --------- Co-authored-by: Adw8 <adwait@deepstacksoft.com>
16 lines
328 B
JavaScript
16 lines
328 B
JavaScript
import { AppRegistry } from 'react-native';
|
|
import { PaperProvider } from 'react-native-paper';
|
|
|
|
import App from './App';
|
|
import { name as appName } from './app.json';
|
|
|
|
export default function Main() {
|
|
return (
|
|
<PaperProvider>
|
|
<App />
|
|
</PaperProvider>
|
|
);
|
|
}
|
|
|
|
AppRegistry.registerComponent(appName, () => Main);
|