| /** | |
| poor man's feature flags | |
| you can export a constant which enables/disables a feature | |
| it's a TS file, so you can add whatever logic you want as long as it's static | |
| */ | |
| export const PREVIEW_COMMENTS_ON = 'CSB_PREVIEW_COMMENTS_ON'; | |
| /** | |
| poor man's feature flags | |
| you can export a constant which enables/disables a feature | |
| it's a TS file, so you can add whatever logic you want as long as it's static | |
| */ | |
| export const PREVIEW_COMMENTS_ON = 'CSB_PREVIEW_COMMENTS_ON'; | |