Quran Components
Quran Common Components are a set of React UI components. The aim is to promote a consistent and reusable component library.
Installation
NPM
npm install --save quran-components
YARN
yarn add quran-components
Usage
ES6
;; const CustomBody = <div> <Button /> <Jumbotron /> </div>;
Also to reduce file size, you can require individual components:
;; const MyButton = <div> <Button /> </div>;
ES5
var React = ;var component = ;var Button = componentButton; var MyButton = React;