mirror of
https://github.com/lemeow125/Reactnative-notesapp.git
synced 2025-06-28 16:35:44 +08:00
initial UIs
This commit is contained in:
parent
0318f4eb53
commit
7008729348
8 changed files with 354 additions and 18 deletions
|
@ -2,15 +2,17 @@ import * as React from "react";
|
|||
import { View } from "react-native";
|
||||
import styles from "../../styles";
|
||||
|
||||
|
||||
export interface props {
|
||||
children: React.ReactNode;
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export default function Background(props: props) {
|
||||
return (
|
||||
|
||||
<View style={styles.background}>
|
||||
<View style={{ margin: 8 }} />
|
||||
<View style={{ margin: 8 }} />
|
||||
{props.children}
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue