View
View
Most fundamental component, view
contains the components inside of itself, it can also nest other views.
import React from "react";
import { Text, View, render } from "react-ape";
class ViewExample extends React.Component {
render() {
return <View style={{ backgroundColor: "red" }} />;
}
}