@applicaster/quick-brick-core
Version:
Core package for Applicaster's Quick Brick App
15 lines (12 loc) • 323 B
JavaScript
/**
* 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>
);