Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 283 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 283 Bytes

CONFIG

In this directory, you can store constants that are intended for use across multiple components.

Example (config/index.js)

const MAX_RETRIES = 5

export {
  MAX_RETRIES,
}