File size: 312 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
export const NUMBER_OF_COMMENTS_PER_FETCH = 50;
export const PLACEHOLDER_STATE = {
PENDING: 'PENDING',
ERROR: 'ERROR',
};
// values conveniently also correspond to css classNames to apply
export const POST_COMMENT_DISPLAY_TYPES = {
singleLine: 'is-single-line',
excerpt: 'is-excerpt',
full: 'is-full',
};
|