Reactnative-notesapp/src/Components/Background/Background.tsx
2023-03-14 23:53:31 +08:00

18 lines
364 B
TypeScript

import * as React from "react";
import { View } from "react-native";
import styles from "../../styles";
export interface props {
children: React.ReactNode;
}
export default function Background(props: props) {
return (
<View style={styles.background}>
<View style={{ margin: 8 }} />
{props.children}
</View>
);
}