forked from cerc-io/laconic-wallet
* Refactored accounts and sign message component * Change sign message to hyperlink * Refactor network dropdown * Add types to utils * Import react in index.js * Use components for create wallet and reset dialog * Remove inline styles from accounts component * Remove inline styles from components * Remove incorrectly placed async * Make app responsive using flex * Make review changes --------- Co-authored-by: Adw8 <adwait@deepstacksoft.com>
18 lines
388 B
JavaScript
18 lines
388 B
JavaScript
import React from 'react';
|
|
import 'text-encoding-polyfill';
|
|
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);
|