Files
planka/client/src/constants/Paths.js
Maksim Eltyshev 5ffef61fe7 Initial commit
2019-08-31 04:07:25 +05:00

14 lines
203 B
JavaScript
Executable File

const ROOT = '/';
const LOGIN = '/login';
const PROJECTS = '/projects/:id';
const BOARDS = '/boards/:id';
const CARDS = '/cards/:id';
export default {
ROOT,
LOGIN,
PROJECTS,
BOARDS,
CARDS,
};