(props)
| 5 | } |
| 6 | |
| 7 | const ContentView: Component<Partial<SnippetProps>> = (props) => { |
| 8 | return ( |
| 9 | <view |
| 10 | style={{ |
| 11 | width: "100%", |
| 12 | height: "100%", |
| 13 | alignItems: "center", |
| 14 | justifyContent: "center", |
| 15 | }} |
| 16 | > |
| 17 | {props.component?.()} |
| 18 | </view> |
| 19 | ); |
| 20 | }; |
| 21 | |
| 22 | export default ContentView; |