Get started
Installation​
Install @faststore/ui
as a dependency of your FastStore project via the command line:
- npm
- Yarn
npm install @faststore/ui
yarn add @faststore/ui
Usage​
Check our references and import the desired components to your page.
import { Button } from '@faststore/ui'
import React, { Component } from 'react'
import MyComponent from '@faststore/ui'
class Example extends Component {
render() {
return <MyComponent />
}
}
Check a live and interactive demo of the Card
component.
Loading...