Adds cervix to symptoms:

has 3 properties: opening, firmness and position (which is optional);
This commit is contained in:
emelko
2018-07-20 12:25:17 +02:00
parent fc014f3ee2
commit 4a2b99f9d5
6 changed files with 332 additions and 3 deletions
+7 -1
View File
@@ -2,10 +2,16 @@ const bleeding = ['spotting', 'light', 'medium', 'heavy']
const mucusFeeling = ['dry', 'nothing', 'wet', 'slippery']
const mucusTexture = ['nothing', 'creamy', 'egg white']
const mucusNFP = ['t', 'Ø', 'f', 'S', '+S']
const cervixOpening = ['closed', 'medium', 'open']
const cervixFirmness = ['hard', 'soft']
const cervixPosition = ['low', 'medium', 'high']
export {
bleeding,
mucusFeeling,
mucusTexture,
mucusNFP
mucusNFP,
cervixOpening,
cervixFirmness,
cervixPosition
}