项目作者: OpusCapita

项目描述 :
Sortable list component with columns.
高级语言: JavaScript
项目地址: git://github.com/OpusCapita/react-draggable-list.git
创建时间: 2018-11-14T10:38:33Z
项目社区:https://github.com/OpusCapita/react-draggable-list

开源协议:MIT License

下载


react-component-template

Description

Describe the component here

Installation

  1. npm install @opuscapita/react-component-template

Demo

View the DEMO

Builds

UMD

The default build with compiled styles in the .js file. Also minified version available in the lib/umd directory.

CommonJS/ES Module

You need to configure your module loader to use cjs or es fields of the package.json to use these module types.
Also you need to configure sass loader, since all the styles are in sass format.

API

Prop name Type Default Description
propName string Describe the prop here

Code example

  1. import React from 'react';
  2. import { Example } from '@opuscapita/react-component-example';
  3. export default class ReactView extends React.Component {
  4. render() {
  5. return (
  6. <Example
  7. propName="propValue"
  8. ></Example>
  9. );
  10. }
  11. }