path.js
export const PATH = {
LOGIN: '/login',
HOME: '/',
NEW: '/new',
SEARCH: '/search'
}
// API ENDPOINT PATHS
export const PATH_AUTH = '/auth'
export const PATH_BUBBLES = '/bubbles'
// VERBS
export const GET = 'GET'
export const POST = 'POST'
export const PUT = 'PUT'
export const PATCH = 'PATCH'
export const DELETE = 'DELETE'