Package Exports
- react-c-grid
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-c-grid) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-c-grid
Installation
npm install react-c-gridUsage
import CGrid from 'react-c-grid'
// import index.css from node_modules/react-c-grid/lib to your sass or less file.
class App extends Component {
constructor(props, context) {
super(props, context)
}
render() {
const columns = [
{ key: 'name', label: 'Name' },
{ key: 'email', label: 'Email' },
{ key: 'company', label: 'Company' },
{ key: 'phone', label: 'Phone' }
]
const rows = [/* ... */]
return <CGrid
rows={rows}
columns={columns}
/>
}
}Sample
Run the sample:
# Install dependencies
npm install
# Run webpack-dev-server
npm run wds
# Start sample
npm startLicense
MIT