- Created .gitignore to exclude sensitive files and directories. - Added API documentation in API_DOCUMENTATION.md. - Included deployment instructions in DEPLOYMENT.md. - Established project structure documentation in PROJECT_STRUCTURE.md. - Updated README.md with project status and team information. - Added recommendations and status tracking documents. - Introduced testing guidelines in TESTING.md. - Set up CI workflow in .github/workflows/ci.yml. - Created Dockerfile for backend and frontend setups. - Added various service and utility files for backend functionality. - Implemented frontend components and pages for user interface. - Included mobile app structure and services. - Established scripts for deployment across multiple chains.
23 lines
674 B
TypeScript
23 lines
674 B
TypeScript
import React, { useEffect } from 'react';
|
|
import { NavigationContainer } from '@react-navigation/native';
|
|
import { PaperProvider } from 'react-native-paper';
|
|
import { StackNavigator } from './src/navigation/StackNavigator';
|
|
import { linking } from './src/navigation/linking';
|
|
import { NotificationService } from './src/services/notifications';
|
|
import { DeepLinkingService } from './src/services/deep-linking';
|
|
|
|
export default function App() {
|
|
useEffect(() => {
|
|
NotificationService.initialize();
|
|
}, []);
|
|
|
|
return (
|
|
<PaperProvider>
|
|
<NavigationContainer linking={linking}>
|
|
<StackNavigator />
|
|
</NavigationContainer>
|
|
</PaperProvider>
|
|
);
|
|
}
|
|
|