17 lines
298 B
TypeScript
17 lines
298 B
TypeScript
|
|
import { StyleSheet } from "react-native";
|
||
|
|
|
||
|
|
const styles = StyleSheet.create({
|
||
|
|
columnContainer: {
|
||
|
|
flexDirection: "column",
|
||
|
|
alignItems: "center",
|
||
|
|
},
|
||
|
|
|
||
|
|
rowContainer: {
|
||
|
|
flexDirection: "row",
|
||
|
|
alignItems: "center",
|
||
|
|
justifyContent: "flex-start",
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
export default styles;
|