mirror of
https://github.com/lemeow125/Reactnative-notesapp.git
synced 2025-04-19 00:11:25 +08:00
18 lines
364 B
TypeScript
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>
|
|
);
|
|
}
|