You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ContentState.js 136B

123456789
  1. const ContentState = {
  2. UNLOADED: 0,
  3. LOADING: 1,
  4. PARSING: 2,
  5. READY: 3,
  6. FAILED: 4
  7. }
  8. export default Object.freeze(ContentState)