stylesheet.ts 187 B

1234567891011
  1. import {
  2. StyleSheet
  3. } from "react-native";
  4. const stylesheet = StyleSheet.create({
  5. container: {
  6. flexDirection: "row",
  7. flex: 1
  8. }
  9. });
  10. export default stylesheet;