https://github.com/react-melon/melon-listview
melon list component
https://github.com/react-melon/melon-listview
component listview melon react
Last synced: 24 days ago
JSON representation
melon list component
- Host: GitHub
- URL: https://github.com/react-melon/melon-listview
- Owner: react-melon
- Created: 2017-03-01T05:31:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-01T05:34:44.000Z (over 9 years ago)
- Last Synced: 2025-02-12T01:40:39.068Z (over 1 year ago)
- Topics: component, listview, melon, react
- Language: JavaScript
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# melon-listview
[](https://travis-ci.org/react-melon/melon-listview)
[](https://coveralls.io/github/react-melon/melon-listview?branch=master)
## Usage
```js
import React from 'react';
import ListView from 'melon-listview';
import ReactDOM from 'react-dom';
import './index.styl';
ReactDOM.render(
,
document.getElementById('app')
);
```
## Setup
### webpack
1. please check out [this](https://github.com/react-melon/melon#如何在-webpack-中使用-melon) first.
2. `npm install -S melon-listview`
### bower
1. `bower install -S melon-listview`
2. config your `requirejs` / `esl`
```js
require.config({
paths: {
'melon-listview': 'bower_components/melon-listview/lib/ListView'
}
});
```
## API Document
check [this](https://doc.esdoc.org/github.com/react-melon/melon-listview/) out
## Run the example
```sh
git clone git@github.com:react-melon/melon-listview.git
cd melon-listview
npm install
npm start
open http://localhost:8080/example
```