12 lines
222 B
TypeScript
12 lines
222 B
TypeScript
|
|
import { Text, View } from "react-native";
|
||
|
|
|
||
|
|
const Ridelayout = ({children}:{children:React.ReactNode}) => {
|
||
|
|
return(
|
||
|
|
<View>
|
||
|
|
|
||
|
|
{children}
|
||
|
|
</View>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Ridelayout;
|