Skip to content

juanrequeijo/choo-ban

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kanban Component

Just a simple kanban component to choo.js

An example of a kanban board

How to use

Add in your routes:

 * app.route('/kanban', kanban);

Add this styles:

import 'materialize-css/dist/css/materialize.min.css';
import 'sweetalert2/dist/sweetalert2.min.css';
import './style/style.css';

Use this events files:

/* Events */
import persistence from '../node_modules/choo-ban/src/events/persistence';
import boards from '../node_modules/choo-ban/src/events/boards';
import boardItems from '../node_modules/choo-ban/src/events/boardItems';

app.use(persistence);
app.use(boards);
app.use(boardItems);

Allow this route:

import kanban from '../node_modules/choo-ban/src/containers/kanban';
app.route('/kanban', kanban);

Source

This project was forked from Luiz Baldi

Running locally

After downloading (or cloning) this repo, just run:

yarn
yarn start

Contributors

About

Simple kanban to manage board tasks, built with choo.js :)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 85.7%
  • CSS 12.4%
  • HTML 1.9%