All Projects → quran → common-components

quran / common-components

Licence: other
Common components to be used across Quran.com, Quranicaudio.com and Salah.com

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to common-components

public-ol-native-template
OrangeLoops React-Native Project Boilerplate
Stars: ✭ 37 (+5.71%)
Mutual labels:  storybook
react-native-hybrid-storybook
Showcase your react native components in the browser
Stars: ✭ 18 (-48.57%)
Mutual labels:  storybook
desktop
💻 Desktop app for all your Storybooks
Stars: ✭ 68 (+94.29%)
Mutual labels:  storybook
Stardust
🎨Tiller Design System
Stars: ✭ 19 (-45.71%)
Mutual labels:  storybook
mod-uk-design-system
Build web applications that meet the Defence Digital service standards
Stars: ✭ 78 (+122.86%)
Mutual labels:  storybook
alquran-tools
Various tools for Parsing Quran Tajweed, Buck, etc.
Stars: ✭ 85 (+142.86%)
Mutual labels:  quran
Gatsby-Starter-Typescript-Apollo-Storybook
Starter with the bare essentials needed for a typescript, apollo, storybook, emotion Gatsby site
Stars: ✭ 17 (-51.43%)
Mutual labels:  storybook
realworld
"The mother of all demo apps" — Exemplary fullstack Medium.com clone powered by Next.js and Ruby on Rails 🏅
Stars: ✭ 113 (+222.86%)
Mutual labels:  storybook
next-app-starter
Another awesome starter for your app base on nextjs + tailwind + react-query + react-hook-form + next-auth + jotai
Stars: ✭ 73 (+108.57%)
Mutual labels:  storybook
Sirat-E-Mustaqeem
Islamic App with Complete Quran, Prayer time Api, Hadith, & Qibla Direction.
Stars: ✭ 119 (+240%)
Mutual labels:  quran
react-ecommerce
E-commerce monorepo application using NextJs, React, React-native, Design-System and Graphql with Typescript
Stars: ✭ 136 (+288.57%)
Mutual labels:  storybook
react-in-out-textarea
A simple React.js User Interface Component that is like Google Translate with full TypeScript Support
Stars: ✭ 28 (-20%)
Mutual labels:  storybook
entria-components
Entria common components
Stars: ✭ 19 (-45.71%)
Mutual labels:  storybook
clojurescript-amplified
Examples on how to setup a ClojureScript web app with tools from the JavaScript ecosystem.
Stars: ✭ 59 (+68.57%)
Mutual labels:  storybook
blue-collar-rocket
I built this as a capstone project of our web development boot camp. Blue Collar Rocket is an app to streamline processes in craftsmanship.
Stars: ✭ 13 (-62.86%)
Mutual labels:  storybook
GNUI
💅 Nordcloud's design system for SaaS products.
Stars: ✭ 21 (-40%)
Mutual labels:  storybook
itsgoingto.be
The magic behind itsgoingto.be
Stars: ✭ 13 (-62.86%)
Mutual labels:  storybook
wheat-ui
Web Components 组件库;拍平框架差异
Stars: ✭ 17 (-51.43%)
Mutual labels:  storybook
availity-react
React components using Availity UIKit and Bootstrap 4
Stars: ✭ 46 (+31.43%)
Mutual labels:  storybook
cra-and-storybook
Stars: ✭ 13 (-62.86%)
Mutual labels:  storybook

Quran Components CircleCI npm version NPM NPM

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

import React from 'React';
import { Button, Jumbotron } from 'quran-components';

const CustomBody = () => (
  <div>
    <Button />
    <Jumbotron />
  </div>
);

Also to reduce file size, you can require individual components:

import React from 'React';
import Button from 'quran-components/lib/Button';

const MyButton = () => (
  <div>
    <Button />
  </div>
);

ES5

var React = require('react');
var component = require('quran-components');
var Button = component.Button;

var MyButton = React.createClass({
  render: function() {
    return (
      <div>
        <Button />
      <div>
    );
  }
});
Demo
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].