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>
21 lines
358 B
TypeScript
21 lines
358 B
TypeScript
import React from 'react';
|
|
import type { PropsWithChildren } from 'react';
|
|
import {
|
|
View,
|
|
} from 'react-native';
|
|
|
|
import { HomeScreen } from './components/HomeScreen';
|
|
import { Header } from './components/Header';
|
|
|
|
const App = (): React.JSX.Element => {
|
|
|
|
return (
|
|
<View>
|
|
<Header />
|
|
<HomeScreen />
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default App;
|