Add screens for Regular Passport, Express Passport, Guidebook, Eazy Passport, and Applicant Detail. Then, add several components in the Applicant Detail screen by parsing data from the History screen

This commit is contained in:
Mochammad Adhi Buchori
2025-04-22 08:06:07 +07:00
parent 4e21c213fc
commit 2c77afb399
17 changed files with 557 additions and 38 deletions

View File

@ -0,0 +1,13 @@
import React from 'react';
import {Text, View} from 'react-native';
import styles from './styles';
function ExpressPassportScreen() {
return (
<View style={styles.container}>
<Text>Express Passport Screen</Text>
</View>
);
}
export default ExpressPassportScreen;