@worldresources/gfw-components
Version:
React component library for the Global Forest Watch project.
16 lines (13 loc) • 452 B
JavaScript
// breakpoints for grid
export const SCREEN_S = 768;
export const SCREEN_M = 1024;
export const SCREEN_L = 1080;
export const breakpoints = {
small: SCREEN_S,
medium: SCREEN_M,
large: SCREEN_L,
};
export const APP_URL = 'https://www.globalforestwatch.org';
export const GFW_API = 'https://api.resourcewatch.org';
export const DATA_PORTAL_URL = 'https://data.globalforestwatch.org';
export const BLOG_URL = 'https://blog.globalforestwatch.org';