12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
const bleeding = ['spotting', 'light', 'medium', 'heavy']
|
|
const mucusFeeling = ['dry', 'nothing', 'wet', 'slippery']
|
|
const mucusTexture = ['nothing', 'creamy', 'egg white']
|
|
const mucusNFP = ['t', 'Ø', 'f', 'S', '+S']
|
|
|
|
export {
|
|
bleeding,
|
|
mucusFeeling,
|
|
mucusTexture,
|
|
mucusNFP
|
|
}
|