Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 500 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 500 Bytes

react-cover-page

Customizable splash screen for React applications.

Usage

import CoverPage from 'react-cover-page'

function initialize() {
  /* do something here that takes time and return a promise */
}

/* ... */

<CoverPage promise={initialize()}
  icon={<img src='icon.png' width={96} height={96} alt='Icon' />}
  title='Awesome app'
/>

Props

The component supports the following props:

TODO

Presentational component

TODO