10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
const bleeding = ['spotting', 'light', 'medium', 'heavy']
|
|
const mucusFeeling = ['dry', 'nothing', 'wet', 'slippery']
|
|
const mucusTexture = ['nothing', 'creamy', 'egg white']
|
|
|
|
export {
|
|
bleeding,
|
|
mucusFeeling,
|
|
mucusTexture
|
|
}
|