implmenting admin dashboard

This commit is contained in:
balzack 2025-02-14 12:53:26 -08:00
parent 1023d0781e
commit 72f2ab4b88
4 changed files with 50 additions and 2 deletions

View File

@ -0,0 +1,17 @@
import {StyleSheet} from 'react-native';
import { Colors } from '../constants/Colors';
export const styles = StyleSheet.create({
accounts: {
width: '100%',
height: '100%',
display: 'flex',
flexDirection: 'column',
},
header: {
display: 'flex',
flexDirection: 'row',
justifyContent: 'center',
width: '100%',
},
});

View File

@ -1,8 +1,15 @@
import React from 'react';
import {SafeAreaView, Image, View, Pressable} from 'react-native';
import {Text} from 'react-native-paper';
import {styles} from './Accounts.styled';
export function Accounts() {
return <Text>ACCOUNTS</Text>
return (
<View style={styles.accounts}>
<View style={styles.header}>
<Text>ACCOUNTS</Text>
</View>
</View>
);
}

View File

@ -0,0 +1,17 @@
import {StyleSheet} from 'react-native';
import { Colors } from '../constants/Colors';
export const styles = StyleSheet.create({
setup: {
width: '100%',
height: '100%',
display: 'flex',
flexDirection: 'column',
},
header: {
display: 'flex',
flexDirection: 'row',
justifyContent: 'center',
width: '100%',
},
});

View File

@ -1,8 +1,15 @@
import React from 'react';
import {SafeAreaView, Image, View, Pressable} from 'react-native';
import {Text} from 'react-native-paper';
import {styles} from './Setup.styled';
export function Setup() {
return <Text>SETUP</Text>
return (
<View style={styles.setup}>
<View style={styles.header}>
<Text>SETUP</Text>
</View>
</View>
);
}