Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.01 KB

API.md

File metadata and controls

39 lines (26 loc) · 1.01 KB

API Reference

React Cards consists of a minimal API.

run()

run starts react cards and loads all the defined namespaces and cards. You will need to manually call run() after creating all your cards inside your defined cards entry file.

import { run } from 'reactcards'
// add your cards
import './someCards'
import './otherCards'
// run React Cards
run()

cards([namespace='default'])

Define namespaces for your cards. This helps to structure your cards accordingly. Simply calling cards() will create a namespace entitled 'default'. It is recommended to define distinct namespaces as redefining a namespace will override the previously defined space.

Arguments

[namespace='default'] (String) A string that defines the namespace.

Returns

NamespaceCard: An object exposing a small set of methods for rendering cards, tests and documentation.

Example

import cards from 'reactcards'
const someNewNameSpace = cards('foo')