Minor touch-ups

This commit is contained in:
Ozzie Gooen 2020-02-17 09:21:15 +00:00
parent c6727c40a5
commit 294965a19a
2 changed files with 10 additions and 3 deletions

View File

@ -85,3 +85,10 @@ module Mixed = {
discreteProbabilityMassFraction, discreteProbabilityMassFraction,
}; };
}; };
module DomainMixed = {
type t = {
mixedShape,
domain,
};
};

View File

@ -49,7 +49,7 @@ let make =
) )
}> }>
{r.name |> ReasonReact.string} {r.name |> ReasonReact.string}
{(r.truthValue ? "TRUE" : "FALSE") |> ReasonReact.string} {(r.truthValue ? " = True" : " = False") |> ReasonReact.string}
</div> </div>
) )
|> ReasonReact.array} |> ReasonReact.array}
@ -77,7 +77,7 @@ let make =
); );
(); ();
}}> }}>
{"True" |> ReasonReact.string} {"=True" |> ReasonReact.string}
</button> </button>
<button <button
className="hover:bg-red-700 text-white py-0 px-1 rounded bg-red-500" className="hover:bg-red-700 text-white py-0 px-1 rounded bg-red-500"
@ -97,7 +97,7 @@ let make =
), ),
); );
}}> }}>
{"False" |> ReasonReact.string} {"=False" |> ReasonReact.string}
</button> </button>
</div> </div>
) )