Add: service api - service/ - app.config.js - app.json.backup Package: - react-native-dotenv - expo-module-scripts ### No Issue
14 lines
375 B
TypeScript
14 lines
375 B
TypeScript
import { InformationBox, ViewWrapper } from "@/components";
|
|
|
|
export default function WaitingRoom() {
|
|
return (
|
|
<>
|
|
<ViewWrapper>
|
|
<InformationBox
|
|
text="Permohonan akses Anda sedang dalam proses verifikasi oleh admin. Harap tunggu, Anda akan menerima pemberitahuan melalui Whatsapp setelah disetujui."
|
|
/>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|