UNPKG

@zaruikes/epubjs-core

Version:

A digital book reader in .opf .epub format for react native using epub.js library inside a webview.

20 lines 500 B
import React from 'react'; import { ActivityIndicator, Text, View } from 'react-native'; import { styles } from './styles'; export function OpeningBook({ width, height, backgroundColor }) { return /*#__PURE__*/React.createElement(View, { style: [styles.container, { width, height, backgroundColor }] }, /*#__PURE__*/React.createElement(ActivityIndicator, { size: "large" }), /*#__PURE__*/React.createElement(Text, { style: styles.text }, "Opening")); }