diff --git a/src/components/charts/DistPlusPlot.re b/src/components/charts/DistPlusPlot.re index 1c957dda..083986e7 100644 --- a/src/components/charts/DistPlusPlot.re +++ b/src/components/charts/DistPlusPlot.re @@ -1,3 +1,14 @@ +type state = { + log: bool, + showStats: bool, + height: int, +}; + +type action = + | CHANGE_LOG + | CHANGE_SHOW_STATS + | CHANGE_HEIGHT(int); + let table = (distPlus, x) => {