mirror of
https://github.com/balzack/databag.git
synced 2025-03-13 00:50:03 +00:00
implmenting admin dashboard
This commit is contained in:
parent
1023d0781e
commit
72f2ab4b88
17
app/client/mobile/src/accounts/Accounts.styled.ts
Normal file
17
app/client/mobile/src/accounts/Accounts.styled.ts
Normal 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%',
|
||||
},
|
||||
});
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
|
17
app/client/mobile/src/setup/Setup.styled.ts
Normal file
17
app/client/mobile/src/setup/Setup.styled.ts
Normal 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%',
|
||||
},
|
||||
});
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user