Window
Window is the main Window of your application, it’s the main Window of the application.
Example
import { Window, View, Text } from '@vixen-js/core-react';
export function WindowExample() { return ( <Window> <View> <Text>Hello World</Text> <Text>Window</Text> </View> </Window> )}
Learn more about Window