1.0.13 • Published 6 years ago
cornerdash v1.0.13
Cornerdash
The General purpose task manager
Easy to deploy, easy to configure by any cornershop department that wants to start using the CS workflows.
Quick Start
- Add
cornerdash
as a dependency into your project
{
"name": "example project",
"version": "0.1.0",
"dependencies": {
"cornerdash": "1.0.13",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-scripts": "1.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}
- Use it in your project
import React from 'react';
import {Cornerdash, Tasks} from 'cornerdash';
const Example () =>
<Cornerdash
baseURL='http://localhost:8000/som/api'
tasksEndpoint='v1/tasks'
topLeft={<span/>}
topRight={<span/>}
main={<span/>}
/>