UNPKG

@applicaster/quick-brick-core

Version:

Core package for Applicaster's Quick Brick App

17 lines (13 loc) 333 B
// @flow /** * quick-brick-core module * @module @applicaster/quick-brick-core/defaults * this module provides defaults for the QuickBrick App */ import * as React from "react"; import { View, Text } from "react-native"; export const EmptyZappApp = () => ( <View> <Text>Welcome to the QuickBrick App</Text> </View> );