Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Layout.jsx 308B

123456789101112131415
  1. import React from "react";
  2. import { View } from "react-native";
  3. import { useTheme } from "@styles";
  4. const Layout = ({ children }) => {
  5. const { colors } = useTheme();
  6. return (
  7. <View style={{ flex: 1, backgroundColor: colors.background }}>
  8. {children}
  9. </View>
  10. );
  11. };
  12. export default Layout